HomeSort by relevance Sort by last modified time
    Searched defs:s_h (Results 1 - 3 of 3) sorted by null

  /bionic/libm/src/
e_pow.c 205 double ss,s2,s_h,s_l,t_h,t_l; local
219 /* compute ss = s_h+s_l = (x-1)/(x+1) or (x-1.5)/(x+1.5) */
223 s_h = ss;
224 SET_LOW_WORD(s_h,0);
229 s_l = v*((u-s_h*t_h)-s_h*t_l);
233 r += s_l*(s_h+ss);
234 s2 = s_h*s_h;
239 u = s_h*t_h
    [all...]
e_powf.c 147 float s2,s_h,s_l,t_h,t_l; local
161 /* compute s = s_h+s_l = (x-1)/(x+1) or (x-1.5)/(x+1.5) */
165 s_h = s;
166 GET_FLOAT_WORD(is,s_h);
167 SET_FLOAT_WORD(s_h,is&0xfffff000);
172 s_l = v*((u-s_h*t_h)-s_h*t_l);
176 r += s_l*(s_h+s);
177 s2 = s_h*s_h;
    [all...]
  /external/fdlibm/
e_pow.c 209 double ss,s2,s_h,s_l,t_h,t_l; local
223 /* compute ss = s_h+s_l = (x-1)/(x+1) or (x-1.5)/(x+1.5) */
227 s_h = ss;
228 __LO(s_h) = 0;
233 s_l = v*((u-s_h*t_h)-s_h*t_l);
237 r += s_l*(s_h+ss);
238 s2 = s_h*s_h;
243 u = s_h*t_h
    [all...]

Completed in 578 milliseconds