Lines Matching defs:rnh
1068 struct radix_node_head *rnh;
1072 R_Malloc(rnh, struct radix_node_head *, sizeof (*rnh));
1073 if (rnh == NULL)
1075 *head = rnh;
1076 return rn_inithead0(rnh, off);
1080 rn_inithead0(struct radix_node_head *rnh, int off)
1086 memset(rnh, 0, sizeof(*rnh));
1087 t = rn_newpair(rn_zeros, off, rnh->rnh_nodes);
1088 ttt = rnh->rnh_nodes + 2;
1096 rnh->rnh_addaddr = rn_addroute;
1097 rnh->rnh_deladdr = rn_delete;
1098 rnh->rnh_matchaddr = rn_match;
1099 rnh->rnh_lookup = rn_lookup;
1100 rnh->rnh_treetop = t;