Lines Matching refs:htable
30 p->htable = kmalloc_array(size, sizeof(*p->htable), GFP_KERNEL); in hashtab_create()
31 if (!p->htable) { in hashtab_create()
37 p->htable[i] = NULL; in hashtab_create()
54 cur = h->htable[hvalue]; in hashtab_insert()
72 newnode->next = h->htable[hvalue]; in hashtab_insert()
73 h->htable[hvalue] = newnode; in hashtab_insert()
89 cur = h->htable[hvalue]; in hashtab_search()
108 cur = h->htable[i]; in hashtab_destroy()
114 h->htable[i] = NULL; in hashtab_destroy()
117 kfree(h->htable); in hashtab_destroy()
118 h->htable = NULL; in hashtab_destroy()
135 cur = h->htable[i]; in hashtab_map()
155 cur = h->htable[i]; in hashtab_stat()