Home
last modified time | relevance | path

Searched refs:newCapacity (Results 1 – 2 of 2) sorted by relevance

/system/core/libutils/
DBasicHashtable.cpp206 size_t newBucketCount, newCapacity; in rehash() local
207 determineCapacity(minimumCapacity, loadFactor, &newBucketCount, &newCapacity); in rehash()
209 if (newBucketCount != mBucketCount || newCapacity != mCapacity) { in rehash()
240 mCapacity = newCapacity; in rehash()
/system/core/include/utils/
DLruCache.h95 void rehash(size_t newCapacity);
236 void LruCache<TKey, TValue>::rehash(size_t newCapacity) { in rehash() argument
242 mTable.reset(new BasicHashtable<TKey, Entry>(newCapacity)); in rehash()