Searched refs:newBucketCount (Results 1 - 1 of 1) sorted by relevance

/frameworks/native/libs/utils/
H A DBasicHashtable.cpp202 size_t newBucketCount, newCapacity; local
203 determineCapacity(minimumCapacity, loadFactor, &newBucketCount, &newCapacity);
205 if (newBucketCount != mBucketCount || newCapacity != mCapacity) {
209 newBuckets = allocateBuckets(newBucketCount);
214 size_t index = chainStart(hash, newBucketCount);
217 size_t inc = chainIncrement(hash, newBucketCount);
220 index = chainSeek(index, inc, newBucketCount);
235 mBucketCount = newBucketCount;

Completed in 75 milliseconds