Searched refs:__to_hz (Results 1 – 1 of 1) sorted by relevance
118 #define z_tmcvt_is_identity(__from_hz, __to_hz) \ argument119 ((__to_hz) == (__from_hz))122 #define z_tmcvt_is_int_mul(__from_hz, __to_hz) \ argument123 ((__to_hz) > (__from_hz) && (__to_hz) % (__from_hz) == 0U)126 #define z_tmcvt_is_int_div(__from_hz, __to_hz) \ argument127 ((__from_hz) > (__to_hz) && (__from_hz) % (__to_hz) == 0U)133 #define z_tmcvt_off_div(__from_hz, __to_hz, __round_up, __round_off) \ argument134 ((__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 …]