Lines Matching refs:HashMemory
53 struct HashMemory {
83 HashMemory *mem; /* HashTable free-list */
110 * return HashMemory * The new free-list for use in allocating hash tables
113 HashMemory *_new_HashMemory(int hash_count, int node_count)
115 HashMemory *mem;
119 mem = (HashMemory *) malloc(sizeof(HashMemory));
154 * mem HashMemory * The free-list container to be deleted.
162 * return HashMemory * Always NULL (even if the memory could not be
165 HashMemory *_del_HashMemory(HashMemory *mem, int force)
185 * mem HashMemory * An optional free-list for use in allocating
213 HashTable *_new_HashTable(HashMemory *mem, int size, HashCase hcase,