Lines Matching defs:HashTable
95 * HashNode's and HashTable's are small objects. Separately allocating
113 * Declare an alias for the private HashTable structure defined in
116 typedef struct HashTable HashTable;
128 HashTable *_new_HashTable(HashMemory *mem, int size, HashCase hcase,
133 HashTable *_del_HashTable(HashTable *hash);
137 Symbol *_new_HashSymbol(HashTable *hash, const char *key, int code,
142 int _clear_HashTable(HashTable *hash);
146 Symbol *_del_HashSymbol(HashTable *hash, const char *key);
150 Symbol *_find_HashSymbol(HashTable *hash, const char *key);
157 int _scan_HashTable(HashTable *hash, HASH_SCAN_FN(*scan_fn), void *context);