Searched refs:buckets (Results 1 – 5 of 5) sorted by relevance
35 Entry** buckets; member61 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()[all …]
35 // of the counts of all the buckets.49 // The bucket's index in the list of buckets, sorted in ascending order.
741 // The client reports the set of hash buckets occupied by all installed
100 ### How many buckets should I use in my histogram?102 You should allocate as many buckets as necessary to perform proper analysis104 for each histogram is proportional to the number of buckets. Therefore, it is
50 TEST(logcat, buckets) { in TEST() argument