Lines Matching full:carry
802 integerPart carry;
804 carry = APInt::tcIncrement(significandParts(), partCount());
807 assert(carry == 0);
808 (void)carry;
811 /* Add the significand of the RHS. Returns the carry flag. */
1316 integerPart carry;
1346 carry = temp_rhs.subtractSignificand
1351 carry = subtractSignificand
1364 assert(!carry);
1365 (void)carry;
1371 carry = addSignificand(temp_rhs);
1374 carry = addSignificand(rhs);
1377 /* We have a guard bit; generating a carry cannot happen. */
1378 assert(!carry);
1379 (void)carry;
3343 // Rounding up requires a decimal add-with-carry. If we continue
3344 // the carry, the newly-introduced zeros will just be truncated.