HomeSort by: relevance | last modified time | path
    Searched refs:heap_node (Results 1 - 2 of 2) sorted by relevancy

  /src/external/mit/libuv/dist/src/
heap-inl.h 27 struct heap_node { struct
28 struct heap_node* left;
29 struct heap_node* right;
30 struct heap_node* parent;
41 struct heap_node* min;
46 typedef int (*heap_compare_fn)(const struct heap_node* a,
47 const struct heap_node* b);
51 HEAP_EXPORT(struct heap_node* heap_min(const struct heap* heap));
53 struct heap_node* newnode,
56 struct heap_node* node
    [all...]
timer.c 38 static int timer_less_than(const struct heap_node* ha,
39 const struct heap_node* hb) {
90 (struct heap_node*) &handle->node.heap,
101 (struct heap_node*) &handle->node.heap,
145 const struct heap_node* heap_node; local
149 heap_node = heap_min(timer_heap(loop));
150 if (heap_node == NULL)
153 handle = container_of(heap_node, uv_timer_t, node.heap);
166 struct heap_node* heap_node local
    [all...]

Completed in 40 milliseconds