Home
last modified time | relevance | path

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

/frameworks/native/libs/utils/
DZipFileRO.cpp122 if (ent < 0 || ent >= mHashTableSize || mHashTable[ent].name == NULL) { in entryToIndex()
334 mHashTableSize = roundUpPower2(1 + (numEntries * 4) / 3); in parseZipArchive()
335 mHashTable = (HashEntry*) calloc(mHashTableSize, sizeof(HashEntry)); in parseZipArchive()
400 int ent = hash & (mHashTableSize-1); in addToHash()
406 ent = (ent + 1) & (mHashTableSize-1); in addToHash()
423 if (mHashTableSize <= 0) { in findEntryByName()
429 int ent = hash & (mHashTableSize-1); in findEntryByName()
439 ent = (ent + 1) & (mHashTableSize-1); in findEntryByName()
459 for (int ent = 0; ent < mHashTableSize; ent++) { in findEntryByIndex()
/frameworks/native/include/utils/
DZipFileRO.h77 mHashTableSize(-1), mHashTable(NULL) in ZipFileRO()
256 int mHashTableSize; variable