Lines Matching refs:count
92 uint32_t count, remainder; in set_pit_frequency() local
96 count = 0xffff; in set_pit_frequency()
98 count = 1; in set_pit_frequency()
100 count = INTERNAL_FREQ_3X / frequency; in set_pit_frequency()
104 count += 1; in set_pit_frequency()
107 count /= 3; in set_pit_frequency()
108 remainder = count % 3; in set_pit_frequency()
111 count += 1; in set_pit_frequency()
115 divisor = count & 0xffff; in set_pit_frequency()
121 timer_delta_time = (3685982306ULL * count) >> 10; in set_pit_frequency()
151 uint32_t count; in platform_set_oneshot_timer() local
164 count = ticks_per_ms * interval; in platform_set_oneshot_timer()
166 divisor = count & 0xffff; in platform_set_oneshot_timer()
167 timer_delta_time = (3685982306ULL * count) >> 10; in platform_set_oneshot_timer()