Searched refs:__to_hz (Results 1 – 1 of 1) sorted by relevance
124 #define z_tmcvt_is_identity(__from_hz, __to_hz) \ argument125 ((__to_hz) == (__from_hz))128 #define z_tmcvt_is_int_mul(__from_hz, __to_hz) \ argument129 ((__to_hz) > (__from_hz) && (__to_hz) % (__from_hz) == 0U)132 #define z_tmcvt_is_int_div(__from_hz, __to_hz) \ argument133 ((__from_hz) > (__to_hz) && (__from_hz) % (__to_hz) == 0U)139 #define z_tmcvt_off_div(__from_hz, __to_hz, __round_up, __round_off) \ argument140 ((__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 …]