Searched refs:s_l (Results 1 - 3 of 3) sorted by last modified time

/freebsd-11-stable/lib/msun/src/
H A De_powf.c152 float s2,s_h,s_l,t_h,t_l; local
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;
H A De_pow.c211 double ss,s2,s_h,s_l,t_h,t_l; local
225 /* compute ss = s_h+s_l = (x-1)/(x+1) or (x-1.5)/(x+1.5) */
235 s_l = v*((u-s_h*t_h)-s_h*t_l);
239 r += s_l*(s_h+ss);
246 v = s_l*t_h+t_l*ss;
/freebsd-11-stable/lib/msun/ld128/
H A De_powl.c152 long double s2, s_h, s_l, t_h, t_l; local
313 /* compute s = s_h+s_l = (x-1)/(x+1) or (x-1.5)/(x+1.5) */
330 s_l = v * ((u - s_h * t_h) - s_h * t_l);
336 r += s_l * (s_h + s);
346 v = s_l * t_h + t_l * s;

Completed in 133 milliseconds