Lines Matching defs:borrow
1351 // the true value, and a "borrow" to the left should be remembered.
1352 int64_t borrow = 0;
1355 int64_t subres = int64_t(u[j+i]) - borrow - Lo_32(p);
1357 borrow = Hi_32(p) - Hi_32(subres);
1359 << ", borrow = " << borrow << '\n');
1361 bool isNeg = u[j+n] < borrow;
1362 u[j+n] -= Lo_32(borrow);
1378 // since it cancels with the borrow that occurred in D4.
2475 /// @returns the borrow out of the subtraction
2482 return 0; // No need to borrow so exit early.
2483 src = 1; // We have to "borrow 1" from next "word"