/src/lib/libm/src/ |
e_pow.c | 210 double ss,s2,s_h,s_l,t_h,t_l; local in function:__ieee754_pow 224 /* compute ss = s_h+s_l = (x-1)/(x+1) or (x-1.5)/(x+1.5) */ 234 s_l = v*((u-s_h*t_h)-s_h*t_l); 238 r += s_l*(s_h+ss); 245 v = s_l*t_h+t_l*ss;
|
e_powf.c | 152 float s2,s_h,s_l,t_h,t_l; local in function:__ieee754_powf 166 /* compute s = s_h+s_l = (x-1)/(x+1) or (x-1.5)/(x+1.5) */ 177 s_l = v*((u-s_h*t_h)-s_h*t_l); 181 r += s_l*(s_h+s); 189 v = s_l*t_h+t_l*s;
|
/src/lib/libm/ld128/ |
e_powl.c | 150 long double s2, s_h, s_l, t_h, t_l; local in function:powl 311 /* compute s = s_h+s_l = (x-1)/(x+1) or (x-1.5)/(x+1.5) */ 328 s_l = v * ((u - s_h * t_h) - s_h * t_l); 334 r += s_l * (s_h + s); 344 v = s_l * t_h + t_l * s;
|