Home
last modified time | relevance | path

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

/hal_rpi_pico-latest/src/rp2_common/pico_async_context/
Dasync_context_base.c62 absolute_time_t earliest = get_absolute_time(); in async_context_base_remove_ready_at_time_worker() local
64 if (absolute_time_diff_us((*prev)->next_time, earliest) >= 0) { in async_context_base_remove_ready_at_time_worker()
65 earliest = (*prev)->next_time; in async_context_base_remove_ready_at_time_worker()
66 assert(!is_at_the_end_of_time(earliest)); // should never be less than now in async_context_base_remove_ready_at_time_worker()
82 absolute_time_t earliest = at_the_end_of_time; in async_context_base_refresh_next_timeout() local
85 if (absolute_time_diff_us(worker->next_time, earliest) > 0) { in async_context_base_refresh_next_timeout()
86 earliest = worker->next_time; in async_context_base_refresh_next_timeout()
90 self->next_time = earliest; in async_context_base_refresh_next_timeout()