Home
last modified time | relevance | path

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

/f-stack/freebsd/netpfil/ipfw/
H A Ddn_heap.c147 int son = h->elements; in heap_insert() local
151 son = key1; in heap_insert()
153 son = h->elements; in heap_insert()
154 if (son == h->size) /* need resize... */ in heap_insert()
158 h->p[son].object = p; in heap_insert()
159 h->p[son].key = key1; in heap_insert()
163 while (son > 0) { in heap_insert()
164 int father = HEAP_FATHER(son); in heap_insert()
171 SET_OFFSET(h, son); in heap_insert()
172 son = father; in heap_insert()
[all …]
/f-stack/freebsd/kern/
H A Duipc_ktls.c2136 struct socket *so, *son; in ktls_work_thread() local
2172 STAILQ_FOREACH_SAFE(so, &local_so_head, so_ktls_rx_list, son) { in ktls_work_thread()