Searched refs:hz (Results 1 – 4 of 4) sorted by relevance
| /external/lib/libm/ |
| A D | e_fmod.c | 31 int32_t n,hx,hy,hz,ix,iy,sx,i; in __ieee754_fmod() local 97 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1; in __ieee754_fmod() 98 if(hz<0){hx = hx+hx+(lx>>31); lx = lx+lx;} in __ieee754_fmod() 100 if((hz|lz)==0) /* return sign(x)*0 */ in __ieee754_fmod() 102 hx = hz+hz+(lz>>31); lx = lz+lz; in __ieee754_fmod() 105 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1; in __ieee754_fmod() 106 if(hz>=0) {hx=hz;lx=lz;} in __ieee754_fmod()
|
| A D | k_cos.c | 71 double hz,z,r,w; in __kernel_cos() local 76 hz = 0.5*z; in __kernel_cos() 77 w = one-hz; in __kernel_cos() 78 return w + (((one-w)-hz) + (z*r-x*y)); in __kernel_cos()
|
| /external/platform/pico/rp2_common/hardware_clocks/ |
| A D | clocks.c | 206 void clock_set_reported_hz(enum clock_index clk_index, uint hz) { in clock_set_reported_hz() argument 207 configured_freq[clk_index] = hz; in clock_set_reported_hz()
|
| /external/platform/pico/rp2_common/hardware_clocks/include/hardware/ |
| A D | clocks.h | 209 void clock_set_reported_hz(enum clock_index clk_index, uint hz);
|
Completed in 6 milliseconds