Lines Matching refs:htable
27 p->htable = kmalloc(sizeof(*(p->htable)) * size, GFP_KERNEL); in hashtab_create()
28 if (p->htable == NULL) { in hashtab_create()
34 p->htable[i] = NULL; in hashtab_create()
51 cur = h->htable[hvalue]; in hashtab_insert()
69 newnode->next = h->htable[hvalue]; in hashtab_insert()
70 h->htable[hvalue] = newnode; in hashtab_insert()
86 cur = h->htable[hvalue]; in hashtab_search()
105 cur = h->htable[i]; in hashtab_destroy()
111 h->htable[i] = NULL; in hashtab_destroy()
114 kfree(h->htable); in hashtab_destroy()
115 h->htable = NULL; in hashtab_destroy()
132 cur = h->htable[i]; in hashtab_map()
152 cur = h->htable[i]; in hashtab_stat()