Home
last modified time | relevance | path

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

/Zephyr-latest/drivers/timer/
Dambiq_stimer.c31 #define MIN_DELAY 1 macro
33 #define MIN_DELAY 4 macro
117 uint32_t delta = (now_64 + MIN_DELAY < next) ? (next - now_64) : MIN_DELAY; in stimer_isr()
166 if (delta <= MIN_DELAY) { in sys_clock_set_timeout()
Dmips_cp0_timer.c24 #define MIN_DELAY 1000 macro
54 if (next - now < MIN_DELAY) { in timer_isr()
89 if ((int32_t)(delay_wanted + last_count - current_count) < MIN_DELAY) { in sys_clock_set_timeout()
Dxtensa_sys_timer.c19 #define MIN_DELAY 1000 macro
56 if ((int32_t)(next - curr) < MIN_DELAY) { in ccompare_isr()
88 if ((cyc - curr) < MIN_DELAY) { in sys_clock_set_timeout()
Dintel_adsp_timer.c40 #define MIN_DELAY (CONFIG_SYS_CLOCK_HW_CYCLES_PER_SEC / 100000) macro
42 BUILD_ASSERT(MIN_DELAY < CYC_PER_TICK);
123 if ((int64_t)(next - curr) < MIN_DELAY) { in compare_isr()
157 if (((uint32_t)next - (uint32_t)curr) < MIN_DELAY) { in sys_clock_set_timeout()
Desp32_sys_timer.c26 #define MIN_DELAY 1 macro
74 if ((int64_t)(next - now) < MIN_DELAY) { in sys_timer_isr()
105 if ((int32_t)(cyc + last_count - now) < MIN_DELAY) { in sys_clock_set_timeout()
Darcv2_timer0.c42 #define MIN_DELAY 1024 macro
289 delay = MAX(ticks * CYC_PER_TICK, MIN_DELAY); in sys_clock_set_timeout()
337 last_load = MIN_DELAY; in sys_clock_set_timeout()
347 delay = MAX(delay, MIN_DELAY); in sys_clock_set_timeout()
Dmcux_os_timer.c27 #define MIN_DELAY 1000 macro
64 if ((int64_t)(next - now) < MIN_DELAY) { in mcux_lpc_ostick_isr()
214 if ((int32_t)(cyc + last_count - now) < MIN_DELAY) { in sys_clock_set_timeout()
Dcortex_m_systick.c32 #define MIN_DELAY MAX(1024U, ((uint32_t)CYC_PER_TICK/16U)) macro
294 last_load = MIN_DELAY; in sys_clock_set_timeout()
303 delay = MAX(delay, MIN_DELAY); in sys_clock_set_timeout()