Lines Matching refs:elt
149 float_up(isc_heap_t *heap, unsigned int i, void *elt) {
153 i > 1 && heap->compare(elt, heap->array[p]) ;
159 heap->array[i] = elt;
168 sink_down(isc_heap_t *heap, unsigned int i, void *elt) {
178 if (heap->compare(elt, heap->array[j]))
185 heap->array[i] = elt;
194 isc_heap_insert(isc_heap_t *heap, void *elt) {
206 float_up(heap, new_last, elt);
213 void *elt;
227 elt = heap->array[heap->last];
231 less = heap->compare(elt, heap->array[idx]);
232 heap->array[idx] = elt;