Lines Matching refs:htable
22 s->htable = kmalloc_array(SIDTAB_SIZE, sizeof(*s->htable), GFP_ATOMIC); in sidtab_init()
23 if (!s->htable) in sidtab_init()
26 s->htable[i] = NULL; in sidtab_init()
44 cur = s->htable[hvalue]; in sidtab_insert()
68 newnode->next = s->htable[hvalue]; in sidtab_insert()
70 s->htable[hvalue] = newnode; in sidtab_insert()
88 cur = s->htable[hvalue]; in sidtab_search_core()
99 cur = s->htable[hvalue]; in sidtab_search_core()
132 cur = s->htable[i]; in sidtab_map()
162 cur = s->htable[i]; in sidtab_search_context()
241 cur = h->htable[i]; in sidtab_hash_eval()
269 cur = s->htable[i]; in sidtab_destroy()
276 s->htable[i] = NULL; in sidtab_destroy()
278 kfree(s->htable); in sidtab_destroy()
279 s->htable = NULL; in sidtab_destroy()
290 dst->htable = src->htable; in sidtab_set()