Searched defs:s_h (Results 1 - 2 of 2) sorted by relevance

/bionic/libm/upstream-freebsd/lib/msun/src/
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) */
167 s_h = s;
168 GET_FLOAT_WORD(is,s_h);
169 SET_FLOAT_WORD(s_h,is&0xfffff000);
174 s_l = v*((u-s_h*t_h)-s_h*t_l);
178 r += s_l*(s_h+s);
179 s2 = s_h*s_h;
[all...]
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) */
225 s_h = ss;
226 SET_LOW_WORD(s_h,0);
231 s_l = v*((u-s_h*t_h)-s_h*t_l);
235 r += s_l*(s_h+ss);
236 s2 = s_h*s_h;
241 u = s_h*t_
[all...]

Completed in 52 milliseconds