Home | History | Annotate | Download | only in src

Lines Matching full:htable

30 	s->htable = malloc(sizeof(sidtab_ptr_t) * SIDTAB_SIZE);
31 if (!s->htable)
34 s->htable[i] = (sidtab_ptr_t) NULL;
48 if (!s || !s->htable)
53 cur = s->htable[hvalue];
77 newnode->next = s->htable[hvalue];
78 s->htable[hvalue] = newnode;
92 if (!s || !s->htable)
97 cur = s->htable[hvalue];
107 s->htable[hvalue] = cur->next;
123 if (!s || !s->htable)
127 cur = s->htable[hvalue];
135 cur = s->htable[hvalue];
153 if (!s || !s->htable)
157 cur = s->htable[i];
176 if (!s || !s->htable)
181 cur = s->htable[i];
188 s->htable[i] = cur->next;
214 cur = s->htable[i];
268 cur = h->htable[i];
292 if (!s || !s->htable)
296 cur = s->htable[i];
303 s->htable[i] = NULL;
305 free(s->htable);
306 s->htable = NULL;
314 dst->htable = src->htable;