Lines Matching refs:htable
21 s->htable = kmalloc(sizeof(*(s->htable)) * SIDTAB_SIZE, GFP_ATOMIC); in sidtab_init()
22 if (!s->htable) in sidtab_init()
25 s->htable[i] = NULL; in sidtab_init()
45 cur = s->htable[hvalue]; in sidtab_insert()
73 newnode->next = s->htable[hvalue]; in sidtab_insert()
75 s->htable[hvalue] = newnode; in sidtab_insert()
94 cur = s->htable[hvalue]; in sidtab_search_core()
105 cur = s->htable[hvalue]; in sidtab_search_core()
138 cur = s->htable[i]; in sidtab_map()
168 cur = s->htable[i]; in sidtab_search_context()
248 cur = h->htable[i]; in sidtab_hash_eval()
276 cur = s->htable[i]; in sidtab_destroy()
283 s->htable[i] = NULL; in sidtab_destroy()
285 kfree(s->htable); in sidtab_destroy()
286 s->htable = NULL; in sidtab_destroy()
297 dst->htable = src->htable; in sidtab_set()