Lines Matching refs:key
28 void* key; member
37 int (*hash)(void* key);
44 int (*hash)(void* key), bool (*equals)(void* keyA, void* keyB)) { in hashmapCreate() argument
83 static inline int hashKey(Hashmap* map, void* key) { in hashKey() argument
84 int h = map->hash(key); in hashKey()
158 int hashmapHash(void* key, size_t keySize) { in hashmapHash() argument
160 char* data = (char*) key; in hashmapHash()
169 static Entry* createEntry(void* key, int hash, void* value) { in createEntry() argument
174 entry->key = key; in createEntry()
192 void* hashmapPut(Hashmap* map, void* key, void* value) { in hashmapPut() argument
193 int hash = hashKey(map, key); in hashmapPut()
202 *p = createEntry(key, hash, value); in hashmapPut()
213 if (equalKeys(current->key, current->hash, key, hash, map->equals)) { in hashmapPut()
224 void* hashmapGet(Hashmap* map, void* key) { in hashmapGet() argument
225 int hash = hashKey(map, key); in hashmapGet()
230 if (equalKeys(entry->key, entry->hash, key, hash, map->equals)) { in hashmapGet()
239 void* hashmapRemove(Hashmap* map, void* key) { in hashmapRemove() argument
240 int hash = hashKey(map, key); in hashmapRemove()
247 if (equalKeys(current->key, current->hash, key, hash, map->equals)) { in hashmapRemove()
261 void hashmapForEach(Hashmap* map, bool (*callback)(void* key, void* value, void* context), in hashmapForEach() argument
268 if (!callback(entry->key, entry->value, context)) { in hashmapForEach()