Searched refs:hash_ent (Results 1 – 3 of 3) sorted by relevance
15 typedef struct hash_ent { struct20 struct hash_ent *next; argument21 } hash_ent; typedef25 hash_ent **table;
179 ht->table = (hash_ent **)calloc(ht->max, sizeof(hash_ent *)); in init_hash_table()191 hash_ent *he, *next; in shutdown_hash_table()212 hash_ent *he, *next;234 static hash_ent *237 hash_ent *he; in new_hash_ent()239 he = (hash_ent *)malloc(sizeof(*he)); in new_hash_ent()258 hash_ent **new_table, *he, *next; in grow_hash_table()269 new_table = (hash_ent **)calloc(newsize, sizeof(hash_ent *)); in grow_hash_table()298 hash_ent *he, *curr; in hash_insert()332 hash_ent *he; in hash_lookup()[all …]
17 typedef struct hash_ent { struct22 struct hash_ent *next; argument23 } hash_ent; typedef27 hash_ent **table;