Home
last modified time | relevance | path

Searched refs:XSIG_LL (Results 1 – 6 of 6) sorted by relevance

/linux-2.4.37.9/arch/i386/math-emu/ !
Dpoly_tan.c77 XSIG_LL(accum) = significand(st0_ptr); in poly_tan()
83 XSIG_LL(accum) <<= 1; in poly_tan()
86 XSIG_LL(accum) = 0x921fb54442d18469LL - XSIG_LL(accum); in poly_tan()
88 if ( XSIG_LL(accum) == 0xffffffffffffffffLL ) in poly_tan()
97 XSIG_LL(argSignif) = XSIG_LL(accum); in poly_tan()
104 XSIG_LL(accum) = XSIG_LL(argSignif) = significand(st0_ptr); in poly_tan()
109 if ( FPU_shrx(&XSIG_LL(accum), -1-exponent) >= 0x80000000U ) in poly_tan()
110 XSIG_LL(accum) ++; /* round up */ in poly_tan()
114 XSIG_LL(argSq) = XSIG_LL(accum); argSq.lsw = accum.lsw; in poly_tan()
116 XSIG_LL(argSqSq) = XSIG_LL(argSq); argSqSq.lsw = argSq.lsw; in poly_tan()
[all …]
Dpoly_sin.c91 polynomial_Xsig(&accumulator, &XSIG_LL(argTo4), neg_terms_l, in poly_sine()
96 polynomial_Xsig(&accumulator, &XSIG_LL(argTo4), pos_terms_l, in poly_sine()
113 XSIG_LL(accumulator) += significand(st0_ptr); in poly_sine()
139 XSIG_LL(argSqrd) = fixed_arg; argSqrd.lsw = 0; in poly_sine()
142 XSIG_LL(argTo4) = XSIG_LL(argSqrd); argTo4.lsw = argSqrd.lsw; in poly_sine()
145 polynomial_Xsig(&accumulator, &XSIG_LL(argTo4), neg_terms_h, in poly_sine()
150 polynomial_Xsig(&accumulator, &XSIG_LL(argTo4), pos_terms_h, in poly_sine()
185 XSIG_LL(accumulator) --; in poly_sine()
192 significand(&result) = XSIG_LL(accumulator); in poly_sine()
251 polynomial_Xsig(&accumulator, &XSIG_LL(argTo4), neg_terms_h, in poly_cos()
[all …]
Dpoly_atan.c96 XSIG_LL(Numer) = significand(st0_ptr); in poly_atan()
97 XSIG_LL(Denom) = significand(st1_ptr); in poly_atan()
104 XSIG_LL(Numer) = significand(st1_ptr); in poly_atan()
105 XSIG_LL(Denom) = significand(st0_ptr); in poly_atan()
133 XSIG_LL(Numer) = XSIG_LL(Denom) = XSIG_LL(argSignif); in poly_atan()
160 XSIG_LL(accumulatore) = XSIG_LL(argSq); in poly_atan()
170 polynomial_Xsig(&accumulator, &XSIG_LL(argSqSq), in poly_atan()
172 mul64_Xsig(&accumulator, &XSIG_LL(argSq)); in poly_atan()
174 polynomial_Xsig(&accumulator, &XSIG_LL(argSqSq), oddnegterms, HIPOWERon-1); in poly_atan()
220 significand(st1_ptr) = XSIG_LL(accumulator); in poly_atan()
Dpoly_2xm1.c73 XSIG_LL(argSignif) = Xll = significand(arg); in poly_2xm1()
80 XSIG_LL(argSignif) <<= 2; in poly_2xm1()
88 XSIG_LL(argSignif) <<= 1; in poly_2xm1()
127 XSIG_LL(Denom) = XSIG_LL(accumulator); in poly_2xm1()
133 XSIG_LL(Denom) <<= 1; in poly_2xm1()
135 XSIG_LL(Denom) |= 1; in poly_2xm1()
146 significand(result) = XSIG_LL(accumulator); in poly_2xm1()
Dpoly_l2.c91 yaccum.lsw = 0; XSIG_LL(yaccum) = significand(st1_ptr); in poly_l2()
102 significand(st1_ptr) = XSIG_LL(accumulator); in poly_l2()
131 XSIG_LL(yaccum) = significand(st1_ptr); in poly_l2p1()
139 significand(dest) = XSIG_LL(accumulator); in poly_l2p1()
212 XSIG_LL(Numer) = XSIG_LL(Denom) = significand(arg); in log2_kernel()
248 arg_signif.lsw = argSignif.lsw; XSIG_LL(arg_signif) = XSIG_LL(argSignif); in log2_kernel()
250 accumulator.lsw = argSignif.lsw; XSIG_LL(accumulator) = XSIG_LL(argSignif); in log2_kernel()
253 Xsq = XSIG_LL(accumulator); in log2_kernel()
Dpoly.h50 #define XSIG_LL(x) (*(unsigned long long *)&x.midw) macro