Searched refs:hz (Results 1 – 2 of 2) sorted by relevance
/l4re-core-master/uclibc/lib/contrib/uclibc/libm/ |
A D | e_fmod.c | 25 int32_t n,hx,hy,hz,ix,iy,sx,i; in __ieee754_fmod() local 91 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1; in __ieee754_fmod() 92 if(hz<0){hx = hx+hx+(lx>>31); lx = lx+lx;} in __ieee754_fmod() 94 if((hz|lz)==0) /* return sign(x)*0 */ in __ieee754_fmod() 96 hx = hz+hz+(lz>>31); lx = lz+lz; in __ieee754_fmod() 99 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1; in __ieee754_fmod() 100 if(hz>=0) {hx=hz;lx=lz;} in __ieee754_fmod()
|
A D | k_cos.c | 61 double a,hz,z,r,qx; in __kernel_cos() local 78 hz = 0.5*z-qx; in __kernel_cos() 80 return a - (hz - (z*r-x*y)); in __kernel_cos()
|
Completed in 3 milliseconds