Searched refs:argSignif (Results 1 - 4 of 4) 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
69 argSignif.lsw = 0;
70 XSIG_LL(argSignif) = Xll = significand(arg);
73 shift = (argSignif.msw & 0x40000000) ? 3 : 2;
76 XSIG_LL(argSignif) <<= 2;
82 XSIG_LL(argSignif) <<= 1;
95 mul_Xsig_Xsig(&accumulator, &argSignif);
98 mul_Xsig_Xsig(&argSignif, &hiterm); /* The leading term */
99 add_two_Xsig(&accumulator, &argSignif, &exponent);
H A Dpoly_tan.c55 argSignif, fix_up; local
91 argSignif.lsw = accum.lsw;
92 XSIG_LL(argSignif) = XSIG_LL(accum);
93 exponent = -1 + norm_Xsig(&argSignif);
96 argSignif.lsw = 0;
97 XSIG_LL(accum) = XSIG_LL(argSignif) = significand(st0_ptr);
134 mul64_Xsig(&accumulatore, &XSIG_LL(argSignif));
135 mul64_Xsig(&accumulatore, &XSIG_LL(argSignif));
153 mul64_Xsig(&accum, &XSIG_LL(argSignif));
154 mul64_Xsig(&accum, &XSIG_LL(argSignif));
[all...]
H A Dpoly_atan.c57 Xsig accumulator, Numer, Denom, accumulatore, argSignif, argSq, argSqSq; local
92 div_Xsig(&Numer, &Denom, &argSignif);
93 exponent += norm_Xsig(&argSignif);
96 || ((exponent == -2) && (argSignif.msw > 0xd413ccd0))) {
104 (argSignif.lsw == 0) && (argSignif.midw == 0) &&
105 (argSignif.msw == 0x80000000))) {
110 argSignif.msw = 0; /* Make the transformed arg -> 0.0 */
112 Numer.lsw = Denom.lsw = argSignif.lsw;
113 XSIG_LL(Numer) = XSIG_LL(Denom) = XSIG_LL(argSignif);
[all...]
H A Dpoly_l2.c186 Xsig accumulator, Numer, Denom, argSignif, arg_signif; local
194 div_Xsig(&Numer, &Denom, &argSignif);
199 div_Xsig(&Numer, &Denom, &argSignif);
203 argSignif.lsw = Numer.lsw;
204 argSignif.midw = Numer.midw;
205 argSignif.msw = Numer.msw;
212 if ((exponent > -2) || (argSignif.msw > (unsigned)0xafb0ccc0)) {
218 arg_signif.lsw = argSignif.lsw;
219 XSIG_LL(arg_signif) = XSIG_LL(argSignif);
220 adj = norm_Xsig(&argSignif);
[all...]

Completed in 190 milliseconds