Home | History | Annotate | Download | only in builtins

Lines Matching refs:quotient

133     rep_t quotient, quotientLo;
134 wideMultiply(aSignificand << 2, reciprocal, &quotient, &quotientLo);
136 // Two cases: quotient is in [0.5, 1.0) or quotient is in [1.0, 2.0).
147 // We also take this time to right shift quotient if it falls in the [1,2)
150 if (quotient < (implicitBit << 1)) {
151 residual = (aSignificand << 53) - quotient * bSignificand;
154 quotient >>= 1;
155 residual = (aSignificand << 52) - quotient * bSignificand;
174 rep_t absResult = quotient & significandMask;