Searched refs:hxs (Results 1 – 4 of 4) sorted by relevance
/sysdeps/ieee754/flt-32/ |
A D | s_expm1f.c | 42 float y,hi,lo,c,t,e,hxs,hfx,r1; in __expm1f() local 94 hxs = x*hfx; in __expm1f() 95 r1 = one+hxs*(Q1+hxs*(Q2+hxs*(Q3+hxs*(Q4+hxs*Q5)))); in __expm1f() 97 e = hxs*((r1-t)/((float)6.0 - x*t)); in __expm1f() 98 if(k==0) return x - (x*e-hxs); /* c is 0 */ in __expm1f() 101 e -= hxs; in __expm1f()
|
/sysdeps/ieee754/dbl-64/ |
A D | s_expm1.c | 136 double y, hi, lo, c, t, e, hxs, hfx, r1, h2, h4, R1, R2, R3; in __expm1() local 210 hxs = x * hfx; in __expm1() 211 R1 = one + hxs * Q[1]; h2 = hxs * hxs; in __expm1() 212 R2 = Q[2] + hxs * Q[3]; h4 = h2 * h2; in __expm1() 213 R3 = Q[4] + hxs * Q[5]; in __expm1() 216 e = hxs * ((r1 - t) / (6.0 - x * t)); in __expm1() 218 return x - (x * e - hxs); /* c is 0 */ in __expm1() 222 e -= hxs; in __expm1()
|
/sysdeps/ieee754/ldbl-128ibm/ |
A D | s_logbl.c | 29 int64_t hx, hxs, rhx; in __logbl() local 34 hxs = hx; in __logbl() 53 if ((hxs ^ lx) < 0 && (lx & 0x7fffffffffffffffLL) != 0) in __logbl()
|
A D | e_ilogbl.c | 33 int64_t hx, hxs; in __ieee754_ilogbl() local 39 hxs = hx; in __ieee754_ilogbl() 58 if ((hxs ^ lx) < 0 && (lx & 0x7fffffffffffffffLL) != 0) in __ieee754_ilogbl()
|
Completed in 5 milliseconds