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

  /bionic/libm/upstream-freebsd/lib/msun/src/
e_powf.c 149 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...]
e_pow.c 207 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_h
    [all...]
  /device/google/contexthub/lib/libm/
ef_pow.c 151 float s2,s_h,s_l,t_h,t_l; local
165 /* compute s = s_h+s_l = (x-1)/(x+1) or (x-1.5)/(x+1.5) */
169 s_h = s;
170 GET_FLOAT_WORD(is,s_h);
171 SET_FLOAT_WORD(s_h,is&0xfffff000);
175 s_l = v*((u-s_h*t_h)-s_h*t_l);
179 r += s_l*(s_h+s);
180 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...]
  /external/v8/src/third_party/fdlibm/
fdlibm.js     [all...]

Completed in 346 milliseconds