Lines Matching defs:carry
1234 integerPart carry;
1236 carry = APInt::tcIncrement(significandParts(), partCount());
1239 assert(carry == 0);
1240 (void)carry;
1243 /* Add the significand of the RHS. Returns the carry flag. */
1837 integerPart carry;
1868 carry = temp_rhs.subtractSignificand
1873 carry = subtractSignificand
1886 assert(!carry);
1887 (void)carry;
1893 carry = addSignificand(temp_rhs);
1896 carry = addSignificand(rhs);
1899 /* We have a guard bit; generating a carry cannot happen. */
1900 assert(!carry);
1901 (void)carry;
4257 // Rounding up requires a decimal add-with-carry. If we continue
4258 // the carry, the newly-introduced zeros will just be truncated.