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

/bionic/libm/upstream-freebsd/lib/msun/src/
H A De_pow.c207 double ss,s2,s_h,s_l,t_h,t_l; local
221 /* compute ss = s_h+s_l = (x-1)/(x+1) or (x-1.5)/(x+1.5) */
231 s_l = v*((u-s_h*t_h)-s_h*t_l);
235 r += s_l*(s_h+ss);
242 v = s_l*t_h+t_l*ss;
H A De_powf.c149 float s2,s_h,s_l,t_h,t_l; local
163 /* compute s = s_h+s_l = (x-1)/(x+1) or (x-1.5)/(x+1.5) */
174 s_l = v*((u-s_h*t_h)-s_h*t_l);
178 r += s_l*(s_h+s);
186 v = s_l*t_h+t_l*s;

Completed in 30 milliseconds