Searched refs:XSIG_LL (Results 1 – 6 of 6) sorted by relevance
/linux-5.19.10/arch/x86/math-emu/ |
D | poly_tan.c | 74 XSIG_LL(accum) = significand(st0_ptr); in poly_tan() 79 XSIG_LL(accum) <<= 1; in poly_tan() 82 XSIG_LL(accum) = 0x921fb54442d18469LL - XSIG_LL(accum); in poly_tan() 84 if (XSIG_LL(accum) == 0xffffffffffffffffLL) { in poly_tan() 93 XSIG_LL(argSignif) = XSIG_LL(accum); in poly_tan() 98 XSIG_LL(accum) = XSIG_LL(argSignif) = significand(st0_ptr); in poly_tan() 102 if (FPU_shrx(&XSIG_LL(accum), -1 - exponent) >= in poly_tan() 104 XSIG_LL(accum)++; /* round up */ in poly_tan() 108 XSIG_LL(argSq) = XSIG_LL(accum); in poly_tan() 111 XSIG_LL(argSqSq) = XSIG_LL(argSq); in poly_tan() [all …]
|
D | poly_sin.c | 86 polynomial_Xsig(&accumulator, &XSIG_LL(argTo4), neg_terms_l, in poly_sine() 91 polynomial_Xsig(&accumulator, &XSIG_LL(argTo4), pos_terms_l, in poly_sine() 108 XSIG_LL(accumulator) += significand(st0_ptr); in poly_sine() 131 XSIG_LL(argSqrd) = fixed_arg; in poly_sine() 135 XSIG_LL(argTo4) = XSIG_LL(argSqrd); in poly_sine() 139 polynomial_Xsig(&accumulator, &XSIG_LL(argTo4), neg_terms_h, in poly_sine() 144 polynomial_Xsig(&accumulator, &XSIG_LL(argTo4), pos_terms_h, in poly_sine() 178 XSIG_LL(accumulator)--; in poly_sine() 185 significand(&result) = XSIG_LL(accumulator); in poly_sine() 241 polynomial_Xsig(&accumulator, &XSIG_LL(argTo4), neg_terms_h, in poly_cos() [all …]
|
D | poly_atan.c | 84 XSIG_LL(Numer) = significand(st0_ptr); in poly_atan() 85 XSIG_LL(Denom) = significand(st1_ptr); in poly_atan() 90 XSIG_LL(Numer) = significand(st1_ptr); in poly_atan() 91 XSIG_LL(Denom) = significand(st0_ptr); in poly_atan() 114 XSIG_LL(Numer) = XSIG_LL(Denom) = XSIG_LL(argSignif); in poly_atan() 142 XSIG_LL(accumulatore) = XSIG_LL(argSq); in poly_atan() 152 polynomial_Xsig(&accumulator, &XSIG_LL(argSqSq), in poly_atan() 154 mul64_Xsig(&accumulator, &XSIG_LL(argSq)); in poly_atan() 156 polynomial_Xsig(&accumulator, &XSIG_LL(argSqSq), oddnegterms, in poly_atan() 200 significand(st1_ptr) = XSIG_LL(accumulator); in poly_atan()
|
D | poly_2xm1.c | 71 XSIG_LL(argSignif) = Xll = significand(arg); in poly_2xm1() 77 XSIG_LL(argSignif) <<= 2; in poly_2xm1() 83 XSIG_LL(argSignif) <<= 1; in poly_2xm1() 118 XSIG_LL(Denom) = XSIG_LL(accumulator); in poly_2xm1() 123 XSIG_LL(Denom) <<= 1; in poly_2xm1() 125 XSIG_LL(Denom) |= 1; in poly_2xm1() 136 significand(result) = XSIG_LL(accumulator); in poly_2xm1()
|
D | poly_l2.c | 80 XSIG_LL(yaccum) = significand(st1_ptr); in poly_l2() 90 significand(st1_ptr) = XSIG_LL(accumulator); in poly_l2() 117 XSIG_LL(yaccum) = significand(st1_ptr); in poly_l2p1() 126 significand(dest) = XSIG_LL(accumulator); in poly_l2p1() 191 XSIG_LL(Numer) = XSIG_LL(Denom) = significand(arg); in log2_kernel() 220 XSIG_LL(arg_signif) = XSIG_LL(argSignif); in log2_kernel() 223 XSIG_LL(accumulator) = XSIG_LL(argSignif); in log2_kernel() 226 Xsq = XSIG_LL(accumulator); in log2_kernel()
|
D | poly.h | 51 #define XSIG_LL(x) (*(unsigned long long *)&x.midw) macro
|