Lines Matching full:carry
856 integerPart carry;
858 carry = APInt::tcIncrement(significandParts(), partCount());
861 assert(carry == 0);
862 (void)carry;
865 /* Add the significand of the RHS. Returns the carry flag. */
1396 integerPart carry;
1426 carry = temp_rhs.subtractSignificand
1431 carry = subtractSignificand
1444 assert(!carry);
1445 (void)carry;
1451 carry = addSignificand(temp_rhs);
1454 carry = addSignificand(rhs);
1457 /* We have a guard bit; generating a carry cannot happen. */
1458 assert(!carry);
1459 (void)carry;
3487 // Rounding up requires a decimal add-with-carry. If we continue
3488 // the carry, the newly-introduced zeros will just be truncated.