Home
last modified time | relevance | path

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

/xnu-10063.101.15/bsd/netinet/
H A Dip_dummynet.c595 int son = h->elements; in heap_insert() local
599 son = (int)key1; in heap_insert()
601 son = h->elements; in heap_insert()
602 if (son == h->size) { /* need resize... */ in heap_insert()
607 h->p[son].object = p; in heap_insert()
608 h->p[son].key = key1; in heap_insert()
611 while (son > 0) { /* bubble up */ in heap_insert()
612 int father = HEAP_FATHER(son); in heap_insert()
615 if (DN_KEY_LT( h->p[father].key, h->p[son].key )) { in heap_insert()
619 HEAP_SWAP(h->p[son], h->p[father], tmp); in heap_insert()
[all …]