Searched refs:hz (Results 1 – 6 of 6) sorted by relevance
/lk-master/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()
|
/lk-master/target/sifive-unleashed/dt/ |
A D | hifive-unleashed-a00.dts | 49 opp-hz = /bits/ 64 <350000000>; 52 opp-hz = /bits/ 64 <700000000>; 55 opp-hz = /bits/ 64 <999999999>; 58 opp-hz = /bits/ 64 <1400000000>;
|
/lk-master/platform/nrf52xxx/ |
A D | timer.c | 135 void arm_cm_systick_init(uint32_t hz) { in arm_cm_systick_init() argument 136 ASSERT(hz == 32768); in arm_cm_systick_init()
|
/lk-master/external/platform/pico/rp2_common/hardware_clocks/include/hardware/ |
A D | clocks.h | 145 void clock_set_reported_hz(enum clock_index clk_index, uint hz);
|
/lk-master/external/platform/pico/rp2_common/hardware_clocks/ |
A D | clocks.c | 212 void clock_set_reported_hz(enum clock_index clk_index, uint hz) { in clock_set_reported_hz() argument 213 configured_freq[clk_index] = hz; in clock_set_reported_hz()
|
Completed in 8 milliseconds