Home | History | Annotate | Download | only in src

Lines Matching full:htable

73 		newnode->next = h->htable[hvalue];
74 h->htable[hvalue] = newnode;
88 if (!h || !h->htable)
92 for (prev = NULL, cur = h->htable[hvalue];
129 if (!h || !h->htable)
132 for (prev = NULL, cur = h->htable[hvalue];
161 if (!h || !h->htable)
165 for (cur = h->htable[hvalue]; cur; cur = cur->next) {
196 if (!h || !h->htable)
200 for (cur = h->htable[hvalue]; cur; cur = cur->next) {
253 if (!h || !h->htable)
257 cur = h->htable[i];
263 h->htable[i] = NULL;
265 free(h->htable);
266 h->htable = NULL;
283 cur = h->htable[i];
296 h->htable = NULL;
322 h->htable = calloc(nslot, sizeof(avtab_ptr_t));
323 if (!h->htable)
340 cur = h->htable[i];