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

/frameworks/compile/mclinker/include/mcld/ADT/
H A DHashTable.h95 /// rehash - if the load factor is larger than 75%, or the empty buckets is
96 // less than 12.5%, the rehash the hash table
97 void rehash();
99 /// rehash - immediately re-new the hash table to the size pCount, and
100 // rehash all elements.
101 void rehash(size_type pCount);
/frameworks/native/include/utils/
H A DBasicHashtable.h71 void rehash(size_t minimumCapacity, float loadFactor);
287 * its contents are rehashed. See rehash().
327 inline void rehash(size_t minimumCapacity, float loadFactor) { function in class:android::BasicHashtable
328 BasicHashtableImpl::rehash(minimumCapacity, loadFactor);
333 * complete without performing a rehash.
H A DLruCache.h87 void rehash(size_t newCapacity);
139 rehash(mTable->capacity() * 2);
216 void LruCache<TKey, TValue>::rehash(size_t newCapacity) { function in class:android::LruCache
/frameworks/native/libs/utils/tests/
H A DBasicHashtable_test.cpp437 h.rehash(h.capacity(), h.loadFactor());
448 h.rehash(9, 1.0f);
465 h.rehash(0, 0.75f);
482 h.rehash(0, 0.75f);
565 // rehash copies shared contents
569 h1.rehash(10, 1.0f);
/frameworks/compile/mclinker/lib/LD/
H A DNamePool.cpp127 m_Table.rehash(pSize);
/frameworks/native/libs/utils/
H A DBasicHashtable.cpp171 rehash(mCapacity * 2, mLoadFactor);
198 void BasicHashtableImpl::rehash(size_t minimumCapacity, float loadFactor) { function in class:android::BasicHashtableImpl

Completed in 675 milliseconds