Lines Matching refs:iph_table
352 KMALLOCS(iph->iph_table, iphtent_t **, in ipf_htable_create()
353 iph->iph_size * sizeof(*iph->iph_table)); in ipf_htable_create()
354 if (iph->iph_table == NULL) { in ipf_htable_create()
361 bzero((char *)iph->iph_table, iph->iph_size * sizeof(*iph->iph_table)); in ipf_htable_create()
480 KFREES(iph->iph_table, iph->iph_size * sizeof(*iph->iph_table)); in ipf_htable_free()
905 ipe->ipe_hnext = iph->iph_table[hv]; in ipf_htent_insert()
906 ipe->ipe_phnext = iph->iph_table + hv; in ipf_htent_insert()
908 if (iph->iph_table[hv] != NULL) in ipf_htent_insert()
909 iph->iph_table[hv]->ipe_phnext = &ipe->ipe_hnext; in ipf_htent_insert()
910 iph->iph_table[hv] = ipe; in ipf_htent_insert()
1023 for (ent = iph->iph_table[hv]; ent != NULL; ent = ent->ipe_hnext) { in ipf_htent_find()
1140 for (ipe = iph->iph_table[hv]; (ipe != NULL); ipe = ipe->ipe_hnext) { in ipf_iphmfind()
1341 for (ipe = iph->iph_table[hv]; (ipe != NULL); ipe = ipe->ipe_next) { in ipf_iphmfind6()