Searched refs:s_h (Results 1 - 3 of 3) sorted by relevance

/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) */
170 s_h = s;
171 GET_FLOAT_WORD(is,s_h);
172 SET_FLOAT_WORD(s_h,is&0xfffff000);
177 s_l = v*((u-s_h*t_h)-s_h*t_l);
181 r += s_l*(s_h+s);
182 s2 = s_h*s_h;
[all...]
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) */
229 s_h = ss;
230 SET_LOW_WORD(s_h,0);
235 s_l = v*((u-s_h*t_h)-s_h*t_l);
239 r += s_l*(s_h+ss);
240 s2 = s_h*s_h;
245 u = s_h*t_
[all...]
/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) */
317 s_h = s;
319 o.value = s_h;
322 s_h = o.value;
330 s_l = v * ((u - s_h * t_h) - s_h * t_l);
336 r += s_l * (s_h + s);
337 s2 = s_h * s_h;
[all...]

Completed in 59 milliseconds