Searched refs:newCapacity (Results 1 – 2 of 2) sorted by relevance
206 size_t newBucketCount, newCapacity; in rehash() local207 determineCapacity(minimumCapacity, loadFactor, &newBucketCount, &newCapacity); in rehash()209 if (newBucketCount != mBucketCount || newCapacity != mCapacity) { in rehash()240 mCapacity = newCapacity; in rehash()
95 void rehash(size_t newCapacity);236 void LruCache<TKey, TValue>::rehash(size_t newCapacity) { in rehash() argument242 mTable.reset(new BasicHashtable<TKey, Entry>(newCapacity)); in rehash()