Lines Matching refs:Hash_Entry
143 struct Hash_Entry **hp; in Hash_InitTable()
157 t->bucketPtr = hp = (struct Hash_Entry **)emalloc(sizeof(*hp) * i); in Hash_InitTable()
183 struct Hash_Entry **hp, *h, *nexth; in Hash_DeleteTable()
224 Hash_Entry *
227 Hash_Entry *e; in Hash_FindEntry()
264 Hash_Entry *
267 Hash_Entry *e; in Hash_CreateEntry()
271 struct Hash_Entry **hp; in Hash_CreateEntry()
296 e = (Hash_Entry *) emalloc(sizeof(*e) + keylen); in Hash_CreateEntry()
328 Hash_DeleteEntry(Hash_Table *t, Hash_Entry *e) in Hash_DeleteEntry()
330 Hash_Entry **hp, *p; in Hash_DeleteEntry()
370 Hash_Entry *
398 Hash_Entry *
401 Hash_Entry *e; in Hash_EnumNext()
445 Hash_Entry *e, *next, **hp, **xp; in RebuildTable()
447 Hash_Entry **oldhp; in RebuildTable()
456 t->bucketPtr = hp = (struct Hash_Entry **) emalloc(sizeof(*hp) * i); in RebuildTable()