Searched refs:Denom (Results 1 - 4 of 4) sorted by relevance
/linux-4.4.14/arch/x86/math-emu/ |
H A D | poly_2xm1.c | 56 Xsig accumulator, Denom, argSignif; poly_2xm1() local 116 Denom.lsw = accumulator.lsw; poly_2xm1() 117 XSIG_LL(Denom) = XSIG_LL(accumulator); poly_2xm1() 119 shr_Xsig(&Denom, -exponent); poly_2xm1() 122 XSIG_LL(Denom) <<= 1; poly_2xm1() 123 if (Denom.lsw & 0x80000000) poly_2xm1() 124 XSIG_LL(Denom) |= 1; poly_2xm1() 125 (Denom.lsw) <<= 1; poly_2xm1() 127 Denom.msw |= 0x80000000; /* add 1.0 */ poly_2xm1() 128 div_Xsig(&accumulator, &Denom, &accumulator); poly_2xm1()
|
H A D | poly_atan.c | 57 Xsig accumulator, Numer, Denom, accumulatore, argSignif, argSq, argSqSq; poly_atan() local 82 Numer.lsw = Denom.lsw = 0; poly_atan() 84 XSIG_LL(Denom) = significand(st1_ptr); poly_atan() 88 Numer.lsw = Denom.lsw = 0; poly_atan() 90 XSIG_LL(Denom) = significand(st0_ptr); poly_atan() 92 div_Xsig(&Numer, &Denom, &argSignif); poly_atan() 112 Numer.lsw = Denom.lsw = argSignif.lsw; poly_atan() 113 XSIG_LL(Numer) = XSIG_LL(Denom) = XSIG_LL(argSignif); poly_atan() 119 shr_Xsig(&Denom, -exponent); poly_atan() 120 Denom.msw |= 0x80000000; poly_atan() 122 div_Xsig(&Numer, &Denom, &argSignif); poly_atan()
|
H A D | poly_l2.c | 186 Xsig accumulator, Numer, Denom, argSignif, arg_signif; log2_kernel() local 189 Numer.lsw = Denom.lsw = 0; log2_kernel() 190 XSIG_LL(Numer) = XSIG_LL(Denom) = significand(arg); log2_kernel() 192 shr_Xsig(&Denom, 2 - (1 + exponent)); log2_kernel() 193 Denom.msw |= 0x80000000; log2_kernel() 194 div_Xsig(&Numer, &Denom, &argSignif); log2_kernel() 196 shr_Xsig(&Denom, 1 - (1 + exponent)); log2_kernel() 197 negate_Xsig(&Denom); log2_kernel() 198 if (Denom.msw & 0x80000000) { log2_kernel() 199 div_Xsig(&Numer, &Denom, &argSignif); log2_kernel() 202 /* Denom must be 1.0 */ log2_kernel()
|
H A D | reg_u_div.S | 407 movl $0x70000000,%eax /* Denom was larger */ 417 movl $0xff000000,%eax /* Denom was smaller */
|
Completed in 148 milliseconds