Lines Matching full:carry
832 integerPart carry;
834 carry = APInt::tcIncrement(significandParts(), partCount());
837 assert(carry == 0);
838 (void)carry;
841 /* Add the significand of the RHS. Returns the carry flag. */
1346 integerPart carry;
1376 carry = temp_rhs.subtractSignificand
1381 carry = subtractSignificand
1394 assert(!carry);
1395 (void)carry;
1401 carry = addSignificand(temp_rhs);
1404 carry = addSignificand(rhs);
1407 /* We have a guard bit; generating a carry cannot happen. */
1408 assert(!carry);
1409 (void)carry;
3388 // Rounding up requires a decimal add-with-carry. If we continue
3389 // the carry, the newly-introduced zeros will just be truncated.