Lines Matching defs:divisor
227 // dividend and divisor are both finite and nonzero numbers
228 Fraction top{GetFraction()}, divisor{y.GetFraction()};
232 if (!top.BTEST(top.bits - 1) || !divisor.BTEST(divisor.bits - 1)) {
236 int divisorLshift{divisor.LEADZ()};
237 divisor = divisor.SHIFTL(divisorLshift);
241 if (NextQuotientBit(top, msb, divisor)) {
245 bool guard{NextQuotientBit(top, msb, divisor)};
246 bool round{NextQuotientBit(top, msb, divisor)};