Home
last modified time | relevance | path

Searched refs:__from_hz (Results 1 – 1 of 1) sorted by relevance

/Zephyr-latest/include/zephyr/sys/
Dtime_units.h118 #define z_tmcvt_is_identity(__from_hz, __to_hz) \ argument
119 ((__to_hz) == (__from_hz))
122 #define z_tmcvt_is_int_mul(__from_hz, __to_hz) \ argument
123 ((__to_hz) > (__from_hz) && (__to_hz) % (__from_hz) == 0U)
126 #define z_tmcvt_is_int_div(__from_hz, __to_hz) \ argument
127 ((__from_hz) > (__to_hz) && (__from_hz) % (__to_hz) == 0U)
133 #define z_tmcvt_off_div(__from_hz, __to_hz, __round_up, __round_off) \ argument
134 ((__round_off) ? ((__from_hz) / (__to_hz)) / 2 : \
135 (__round_up) ? ((__from_hz) / (__to_hz)) - 1 : \
163 #define z_tmcvt_off_gen(__from_hz, __to_hz, __round_up, __round_off) \ argument
[all …]