Searched refs:min_heap_idx (Results 1 – 4 of 4) sorted by relevance
66 void min_heap_elem_init_(struct event* e) { e->ev_timeout_pos.min_heap_idx = -1; } in min_heap_elem_init_()85 e->ev_timeout_pos.min_heap_idx = -1; in min_heap_pop_()93 return e->ev_timeout_pos.min_heap_idx == 0; in min_heap_elt_is_top_()98 if (-1 != e->ev_timeout_pos.min_heap_idx) in min_heap_erase_()101 unsigned parent = (e->ev_timeout_pos.min_heap_idx - 1) / 2; in min_heap_erase_()107 if (e->ev_timeout_pos.min_heap_idx > 0 && min_heap_elem_greater(s->p[parent], last)) in min_heap_erase_()108 min_heap_shift_up_unconditional_(s, e->ev_timeout_pos.min_heap_idx, last); in min_heap_erase_()110 min_heap_shift_down_(s, e->ev_timeout_pos.min_heap_idx, last); in min_heap_erase_()111 e->ev_timeout_pos.min_heap_idx = -1; in min_heap_erase_()119 if (-1 == e->ev_timeout_pos.min_heap_idx) { in min_heap_adjust_()[all …]
3980 EVUTIL_ASSERT(ev->ev_timeout_pos.min_heap_idx == i); in event_base_assert_ok_nolock_()
40 ev->ev_timeout_pos.min_heap_idx = -1; in set_random_timeout()
129 int min_heap_idx; member