Searched refs:__t (Results 1 – 1 of 1) sorted by relevance
/Zephyr-latest/include/zephyr/sys/ |
D | time_units.h | 169 #define z_tmcvt_int_div_32(__t, __from_hz, __to_hz, __round_up, __round_off) \ argument 170 ((uint64_t) (__t) <= 0xffffffffU - \ 172 ((uint32_t)((__t) + \ 177 (uint32_t) (((uint64_t) (__t) + \ 184 #define z_tmcvt_int_mul_32(__t, __from_hz, __to_hz) \ argument 185 (uint32_t) (__t)*((__to_hz) / (__from_hz)) 188 #define z_tmcvt_gen_32(__t, __from_hz, __to_hz, __round_up, __round_off) \ argument 189 ((uint32_t) (((uint64_t) (__t)*(__to_hz) + \ 193 #define z_tmcvt_int_div_64(__t, __from_hz, __to_hz, __round_up, __round_off) \ argument 194 (((uint64_t) (__t) + z_tmcvt_off_div(__from_hz, __to_hz, \ [all …]
|