Lines Matching refs:rt_tree
62 RB_HEAD(rt_tree, rt_node) rt;
63 RB_PROTOTYPE(rt_tree, rt_node, entry, rt_compare)
64 RB_GENERATE(rt_tree, rt_node, entry, rt_compare)
161 return (RB_FIND(rt_tree, &rt, &s)); in rt_find()
207 if (RB_INSERT(rt_tree, &rt, r) != NULL) { in rt_insert()
222 if (RB_REMOVE(rt_tree, &rt, r) == NULL) { in rt_remove()
242 for (r = RB_MIN(rt_tree, &rt); r != NULL; r = nr) { in rt_invalidate()
243 nr = RB_NEXT(rt_tree, &rt, r); in rt_invalidate()
256 while ((r = RB_MIN(rt_tree, &rt)) != NULL) in rt_clear()
266 RB_FOREACH(r, rt_tree, &rt) { in rt_snap()
289 RB_FOREACH(r, rt_tree, &rt) { in rt_dump()
324 RB_FOREACH(r, rt_tree, &rt) { in rt_match_origin()
584 RB_FOREACH(rn, rt_tree, &rt) { in srt_expire_nbr()