Home
last modified time | relevance | path

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

/Zephyr-latest/include/zephyr/sys/
Dtime_units.h124 #define z_tmcvt_is_identity(__from_hz, __to_hz) \ argument
125 ((__to_hz) == (__from_hz))
128 #define z_tmcvt_is_int_mul(__from_hz, __to_hz) \ argument
129 ((__to_hz) > (__from_hz) && (__to_hz) % (__from_hz) == 0U)
132 #define z_tmcvt_is_int_div(__from_hz, __to_hz) \ argument
133 ((__from_hz) > (__to_hz) && (__from_hz) % (__to_hz) == 0U)
139 #define z_tmcvt_off_div(__from_hz, __to_hz, __round_up, __round_off) \ argument
140 ((__round_off) ? ((__from_hz) / (__to_hz)) / 2 : \
141 (__round_up) ? ((__from_hz) / (__to_hz)) - 1 : \
169 #define z_tmcvt_off_gen(__from_hz, __to_hz, __round_up, __round_off) \ argument
[all …]