Lines Matching defs:elt
146 float_up(isc_heap_t *heap, unsigned int i, void *elt) {
150 i > 1 && heap->compare(elt, heap->array[p]) ;
156 heap->array[i] = elt;
164 sink_down(isc_heap_t *heap, unsigned int i, void *elt) {
174 if (heap->compare(elt, heap->array[j]))
181 heap->array[i] = elt;
189 isc_heap_insert(isc_heap_t *heap, void *elt) {
200 float_up(heap, new_last, elt);
207 void *elt;
217 elt = heap->array[heap->last];
221 less = heap->compare(elt, heap->array[index]);
222 heap->array[index] = elt;