Searched refs:hxs (Results 1 - 2 of 2) sorted by relevance

/netbsd-current/lib/libm/src/
H A Ds_expm1f.c42 float y,hi,lo,c,t,e,hxs,hfx,r1; local
93 hxs = x*hfx;
94 r1 = one+hxs*(Q1+hxs*(Q2+hxs*(Q3+hxs*(Q4+hxs*Q5))));
96 e = hxs*((r1-t)/((float)6.0 - x*t));
97 if(k==0) return x - (x*e-hxs); /* c is 0 */
100 e -= hxs;
[all...]
H A Ds_expm1.c134 double y,hi,lo,c,t,e,hxs,hfx,r1; local
188 hxs = x*hfx;
189 r1 = one+hxs*(Q1+hxs*(Q2+hxs*(Q3+hxs*(Q4+hxs*Q5))));
191 e = hxs*((r1-t)/(6.0 - x*t));
192 if(k==0) return x - (x*e-hxs); /* c is 0 */
195 e -= hxs;
[all...]

Completed in 128 milliseconds