Lines Matching refs:quotient
134 rep_t quotient, quotientLo;
135 wideMultiply(aSignificand << 2, reciprocal, "ient, "ientLo);
137 // Two cases: quotient is in [0.5, 1.0) or quotient is in [1.0, 2.0).
148 // We also take this time to right shift quotient if it falls in the [1,2)
151 if (quotient < (implicitBit << 1)) {
152 residual = (aSignificand << 53) - quotient * bSignificand;
155 quotient >>= 1;
156 residual = (aSignificand << 52) - quotient * bSignificand;
175 rep_t absResult = quotient & significandMask;