Home
last modified time | relevance | path

Searched refs:bucketPtr (Results 1 – 2 of 2) sorted by relevance

/netbsd/sbin/rcorder/
H A Dhash.c157 t->bucketPtr = hp = (struct Hash_Entry **)emalloc(sizeof(*hp) * i); in Hash_InitTable()
187 for (hp = t->bucketPtr, i = t->size; --i >= 0;) { in Hash_DeleteTable()
193 free(t->bucketPtr); in Hash_DeleteTable()
199 t->bucketPtr = NULL; in Hash_DeleteTable()
234 for (e = t->bucketPtr[h & t->mask]; e != NULL; e = e->next) in Hash_FindEntry()
281 for (e = t->bucketPtr[h & t->mask]; e != NULL; e = e->next) { in Hash_CreateEntry()
297 hp = &t->bucketPtr[h & t->mask]; in Hash_CreateEntry()
334 for (hp = &t->bucketPtr[e->namehash & t->mask]; in Hash_DeleteEntry()
419 e = t->bucketPtr[searchPtr->nextIndex++]; in Hash_EnumNext()
451 oldhp = t->bucketPtr; in RebuildTable()
[all …]
H A Dhash.h100 struct Hash_Entry **bucketPtr; member