Searched refs:__t (Results 1 – 1 of 1) sorted by relevance
| /Zephyr-latest/include/zephyr/sys/ |
| D | time_units.h | 175 #define z_tmcvt_int_div_32(__t, __from_hz, __to_hz, __round_up, __round_off) \ argument 176 ((uint64_t) (__t) <= 0xffffffffU - \ 178 ((uint32_t)((__t) + \ 183 (uint32_t) (((uint64_t) (__t) + \ 190 #define z_tmcvt_int_mul_32(__t, __from_hz, __to_hz) \ argument 191 (uint32_t) (__t)*((__to_hz) / (__from_hz)) 194 #define z_tmcvt_gen_32(__t, __from_hz, __to_hz, __round_up, __round_off) \ argument 195 ((uint32_t) (((uint64_t) (__t)*(__to_hz) + \ 199 #define z_tmcvt_int_div_64(__t, __from_hz, __to_hz, __round_up, __round_off) \ argument 200 (((uint64_t) (__t) + z_tmcvt_off_div(__from_hz, __to_hz, \ [all …]
|