Searched refs:s_l (Results 1 – 3 of 3) sorted by relevance
/AliOS-Things-master/components/py_engine/engine/lib/libm_dbl/ |
A D | pow.c | 219 double ss,s2,s_h,s_l,t_h,t_l; in pow() local 252 s_l = v*((u-s_h*t_h)-s_h*t_l); in pow() 256 r += s_l*(s_h+ss); in pow() 263 v = s_l*t_h + t_l*ss; in pow()
|
/AliOS-Things-master/components/SDL2/src/libm/ |
A D | e_pow.c | 207 double s2,s_h,s_l,t_h,t_l; in __ieee754_pow() local 231 s_l = v*((u-s_h*t_h)-s_h*t_l); in __ieee754_pow() 235 r += s_l*(s_h+s); in __ieee754_pow() 242 v = s_l*t_h+t_l*s; in __ieee754_pow()
|
/AliOS-Things-master/components/py_engine/engine/lib/libm/ |
A D | math.c | 269 float s2,s_h,s_l,t_h,t_l; in powf() local 303 s_l = v*((u - s_h*t_h) - s_h*t_l); in powf() 307 r += s_l*(s_h+s); in powf() 315 v = s_l*t_h + t_l*s; in powf()
|
Completed in 5 milliseconds