Lines Matching refs:buckets
35 Entry** buckets; member
61 map->buckets = calloc(map->bucketCount, sizeof(Entry*)); in hashmapCreate()
62 if (map->buckets == NULL) { in hashmapCreate()
118 Entry* entry = map->buckets[i]; in expandIfNecessary()
129 free(map->buckets); in expandIfNecessary()
130 map->buckets = newBuckets; in expandIfNecessary()
146 Entry* entry = map->buckets[i]; in hashmapFree()
153 free(map->buckets); in hashmapFree()
200 Entry** p = &(map->buckets[index]); in hashmapPut()
232 Entry* entry = map->buckets[index]; in hashmapGet()
247 Entry* entry = map->buckets[index]; in hashmapContainsKey()
263 Entry** p = &(map->buckets[index]); in hashmapMemoize()
296 Entry** p = &(map->buckets[index]); in hashmapRemove()
318 Entry* entry = map->buckets[i]; in hashmapForEach()
338 Entry* entry = map->buckets[i]; in hashmapCountCollisions()