Searched defs:entryIndices (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/libs/androidfw/
H A DTypeWrappers.cpp27 const uint32_t* const entryIndices = reinterpret_cast<const uint32_t*>( local
29 if (reinterpret_cast<uintptr_t>(entryIndices) + (sizeof(uint32_t) * entryCount)
34 mLength = ResTable_sparseTypeEntry{entryIndices[entryCount - 1]}.idx + 1;
60 const uint32_t* const entryIndices = reinterpret_cast<const uint32_t*>( local
62 if (reinterpret_cast<uintptr_t>(entryIndices) + (sizeof(uint32_t) * entryCount) > containerEnd) {
69 auto iter = std::lower_bound(entryIndices, entryIndices + entryCount, mIndex, keyCompare);
70 if (iter == entryIndices + entryCount
77 entryOffset = dtohl(entryIndices[mIndex]);

Completed in 61 milliseconds