Searched refs:XSIG_LL (Results 1 – 6 of 6) sorted by relevance
/arch/x86/math-emu/ |
D | poly_tan.c | 73 XSIG_LL(accum) = significand(st0_ptr); in poly_tan() 78 XSIG_LL(accum) <<= 1; in poly_tan() 81 XSIG_LL(accum) = 0x921fb54442d18469LL - XSIG_LL(accum); in poly_tan() 83 if (XSIG_LL(accum) == 0xffffffffffffffffLL) { in poly_tan() 92 XSIG_LL(argSignif) = XSIG_LL(accum); in poly_tan() 97 XSIG_LL(accum) = XSIG_LL(argSignif) = significand(st0_ptr); in poly_tan() 101 if (FPU_shrx(&XSIG_LL(accum), -1 - exponent) >= in poly_tan() 103 XSIG_LL(accum)++; /* round up */ in poly_tan() 107 XSIG_LL(argSq) = XSIG_LL(accum); in poly_tan() 110 XSIG_LL(argSqSq) = XSIG_LL(argSq); in poly_tan() [all …]
|
D | poly_sin.c | 85 polynomial_Xsig(&accumulator, &XSIG_LL(argTo4), neg_terms_l, in poly_sine() 90 polynomial_Xsig(&accumulator, &XSIG_LL(argTo4), pos_terms_l, in poly_sine() 107 XSIG_LL(accumulator) += significand(st0_ptr); in poly_sine() 130 XSIG_LL(argSqrd) = fixed_arg; in poly_sine() 134 XSIG_LL(argTo4) = XSIG_LL(argSqrd); in poly_sine() 138 polynomial_Xsig(&accumulator, &XSIG_LL(argTo4), neg_terms_h, in poly_sine() 143 polynomial_Xsig(&accumulator, &XSIG_LL(argTo4), pos_terms_h, in poly_sine() 177 XSIG_LL(accumulator)--; in poly_sine() 184 significand(&result) = XSIG_LL(accumulator); in poly_sine() 240 polynomial_Xsig(&accumulator, &XSIG_LL(argTo4), neg_terms_h, in poly_cos() [all …]
|
D | poly_2xm1.c | 70 XSIG_LL(argSignif) = Xll = significand(arg); in poly_2xm1() 76 XSIG_LL(argSignif) <<= 2; in poly_2xm1() 82 XSIG_LL(argSignif) <<= 1; in poly_2xm1() 117 XSIG_LL(Denom) = XSIG_LL(accumulator); in poly_2xm1() 122 XSIG_LL(Denom) <<= 1; in poly_2xm1() 124 XSIG_LL(Denom) |= 1; in poly_2xm1() 135 significand(result) = XSIG_LL(accumulator); in poly_2xm1()
|
D | poly_atan.c | 83 XSIG_LL(Numer) = significand(st0_ptr); in poly_atan() 84 XSIG_LL(Denom) = significand(st1_ptr); in poly_atan() 89 XSIG_LL(Numer) = significand(st1_ptr); in poly_atan() 90 XSIG_LL(Denom) = significand(st0_ptr); in poly_atan() 113 XSIG_LL(Numer) = XSIG_LL(Denom) = XSIG_LL(argSignif); in poly_atan() 141 XSIG_LL(accumulatore) = XSIG_LL(argSq); in poly_atan() 151 polynomial_Xsig(&accumulator, &XSIG_LL(argSqSq), in poly_atan() 153 mul64_Xsig(&accumulator, &XSIG_LL(argSq)); in poly_atan() 155 polynomial_Xsig(&accumulator, &XSIG_LL(argSqSq), oddnegterms, in poly_atan() 199 significand(st1_ptr) = XSIG_LL(accumulator); in poly_atan()
|
D | poly_l2.c | 79 XSIG_LL(yaccum) = significand(st1_ptr); in poly_l2() 89 significand(st1_ptr) = XSIG_LL(accumulator); in poly_l2() 116 XSIG_LL(yaccum) = significand(st1_ptr); in poly_l2p1() 125 significand(dest) = XSIG_LL(accumulator); in poly_l2p1() 190 XSIG_LL(Numer) = XSIG_LL(Denom) = significand(arg); in log2_kernel() 219 XSIG_LL(arg_signif) = XSIG_LL(argSignif); in log2_kernel() 222 XSIG_LL(accumulator) = XSIG_LL(argSignif); in log2_kernel() 225 Xsq = XSIG_LL(accumulator); in log2_kernel()
|
D | poly.h | 50 #define XSIG_LL(x) (*(unsigned long long *)&x.midw) macro
|