Home | History | Annotate | Download | only in Support

Lines Matching full:carry

830   integerPart carry;
832 carry = APInt::tcIncrement(significandParts(), partCount());
835 assert(carry == 0);
836 (void)carry;
839 /* Add the significand of the RHS. Returns the carry flag. */
1344 integerPart carry;
1374 carry = temp_rhs.subtractSignificand
1379 carry = subtractSignificand
1392 assert(!carry);
1393 (void)carry;
1399 carry = addSignificand(temp_rhs);
1402 carry = addSignificand(rhs);
1405 /* We have a guard bit; generating a carry cannot happen. */
1406 assert(!carry);
1407 (void)carry;
3350 // Rounding up requires a decimal add-with-carry. If we continue
3351 // the carry, the newly-introduced zeros will just be truncated.