Lines Matching refs:Denom
187 Xsig accumulator, Numer, Denom, argSignif, arg_signif;
190 Numer.lsw = Denom.lsw = 0;
191 XSIG_LL(Numer) = XSIG_LL(Denom) = significand(arg);
193 shr_Xsig(&Denom, 2 - (1 + exponent));
194 Denom.msw |= 0x80000000;
195 div_Xsig(&Numer, &Denom, &argSignif);
197 shr_Xsig(&Denom, 1 - (1 + exponent));
198 negate_Xsig(&Denom);
199 if (Denom.msw & 0x80000000) {
200 div_Xsig(&Numer, &Denom, &argSignif);
203 /* Denom must be 1.0 */