Searched refs:z_l (Results 1 – 3 of 3) sorted by relevance
/AliOS-Things-master/components/py_engine/engine/lib/libm_dbl/ |
A D | pow.c | 94 double z,ax,z_h,z_l,p_h,p_l; in pow() local 269 z_l = cp_l*p_h+p_l*cp + dp_l[k]; in pow() 272 t1 = ((z_h + z_l) + dp_h[k]) + t; in pow() 274 t2 = z_l - (((t1 - t) - dp_h[k]) - z_h); in pow()
|
/AliOS-Things-master/components/SDL2/src/libm/ |
A D | e_pow.c | 105 double z,ax,z_h,z_l,p_h,p_l; in __ieee754_pow() local 248 z_l = cp_l*p_h+p_l*cp+dp_l[k]; in __ieee754_pow() 251 t1 = (((z_h+z_l)+dp_h[k])+t); in __ieee754_pow() 253 t2 = z_l-(((t1-t)-dp_h[k])-z_h); in __ieee754_pow()
|
/AliOS-Things-master/components/py_engine/engine/lib/libm/ |
A D | math.c | 173 float z,ax,z_h,z_l,p_h,p_l; in powf() local 322 z_l = cp_l*p_h + p_l*cp+dp_l[k]; in powf() 325 t1 = (((z_h + z_l) + dp_h[k]) + t); in powf() 328 t2 = z_l - (((t1 - t) - dp_h[k]) - z_h); in powf()
|
Completed in 6 milliseconds