Searched refs:Denom (Results 1 - 3 of 3) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/x86/math-emu/
H A Dpoly_2xm1.c56 Xsig accumulator, Denom, argSignif; local
116 Denom.lsw = accumulator.lsw;
117 XSIG_LL(Denom) = XSIG_LL(accumulator);
119 shr_Xsig(&Denom, -exponent);
122 XSIG_LL(Denom) <<= 1;
123 if (Denom.lsw & 0x80000000)
124 XSIG_LL(Denom) |= 1;
125 (Denom.lsw) <<= 1;
127 Denom.msw |= 0x80000000; /* add 1.0 */
128 div_Xsig(&accumulator, &Denom,
[all...]
H A Dpoly_atan.c57 Xsig accumulator, Numer, Denom, accumulatore, argSignif, argSq, argSqSq; local
82 Numer.lsw = Denom.lsw = 0;
84 XSIG_LL(Denom) = significand(st1_ptr);
88 Numer.lsw = Denom.lsw = 0;
90 XSIG_LL(Denom) = significand(st0_ptr);
92 div_Xsig(&Numer, &Denom, &argSignif);
112 Numer.lsw = Denom.lsw = argSignif.lsw;
113 XSIG_LL(Numer) = XSIG_LL(Denom) = XSIG_LL(argSignif);
119 shr_Xsig(&Denom, -exponent);
120 Denom
[all...]
H A Dpoly_l2.c186 Xsig accumulator, Numer, Denom, argSignif, arg_signif; local
189 Numer.lsw = Denom.lsw = 0;
190 XSIG_LL(Numer) = XSIG_LL(Denom) = significand(arg);
192 shr_Xsig(&Denom, 2 - (1 + exponent));
193 Denom.msw |= 0x80000000;
194 div_Xsig(&Numer, &Denom, &argSignif);
196 shr_Xsig(&Denom, 1 - (1 + exponent));
197 negate_Xsig(&Denom);
198 if (Denom.msw & 0x80000000) {
199 div_Xsig(&Numer, &Denom,
[all...]

Completed in 28 milliseconds