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