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()
242 cur = h->htable[i]; in sidtab_hash_eval()
270 cur = s->htable[i]; in sidtab_destroy()
277 s->htable[i] = NULL; in sidtab_destroy()
279 kfree(s->htable); in sidtab_destroy()
280 s->htable = NULL; in sidtab_destroy()
291 dst->htable = src->htable; in sidtab_set()