Lines Matching refs:bucketPtr
117 t->bucketPtr = hp = (struct Hash_Entry **)emalloc(sizeof(*hp) * i); in Hash_InitTable()
146 for (hp = t->bucketPtr, i = t->size; --i >= 0;) { in Hash_DeleteTable()
152 free((char *)t->bucketPtr); in Hash_DeleteTable()
158 t->bucketPtr = NULL; in Hash_DeleteTable()
191 for (e = t->bucketPtr[h & t->mask]; e != NULL; e = e->next) in Hash_FindEntry()
237 for (e = t->bucketPtr[h & t->mask]; e != NULL; e = e->next) { in Hash_CreateEntry()
253 hp = &t->bucketPtr[h & t->mask]; in Hash_CreateEntry()
290 for (hp = &t->bucketPtr[e->namehash & t->mask]; in Hash_DeleteEntry()
375 e = t->bucketPtr[searchPtr->nextIndex++]; in Hash_EnumNext()
406 oldhp = t->bucketPtr; in RebuildTable()
411 t->bucketPtr = hp = (struct Hash_Entry **) emalloc(sizeof(*hp) * i); in RebuildTable()
417 xp = &t->bucketPtr[e->namehash & mask]; in RebuildTable()