Lines Matching defs:quotient
1268 assert(q && "Must provide quotient");
1323 DEBUG_KNUTH(dbgs() << "KnuthDiv: quotient digit #" << j << '\n');
1394 DEBUG_KNUTH(dbgs() << "KnuthDiv: quotient:");
1398 // D8. [Unnormalize]. Now q[...] is the desired quotient, and the desired
1476 // initialize the quotient and remainder
1526 // If the caller wants the quotient
1994 APInt quotient = sdiv_ov(RHS, Overflow);
1995 if ((quotient * RHS != *this) && (isNegative() != RHS.isNegative()))
1996 return quotient - 1;
1997 return quotient;