Home
last modified time | relevance | path

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

/system/timezone/debug_tools/host/main/java/
DZoneSplitter.java151 int entryCount = indexSize / SIZEOF_INDEX_ENTRY; in extractZicFiles() local
152 int[] byteOffsets = new int[entryCount]; in extractZicFiles()
153 int[] lengths = new int[entryCount]; in extractZicFiles()
154 String[] ids = new String[entryCount]; in extractZicFiles()
156 for (int i = 0; i < entryCount; i++) { in extractZicFiles()
188 for (int i = 0; i < entryCount; i++) { in extractZicFiles()
/system/libcppbor/src/
Dcppbor_parse.cpp209 std::tuple<const uint8_t*, ParseClient*> handleEntries(size_t entryCount, const uint8_t* hdrBegin, in handleEntries() argument
213 while (entryCount > 0) { in handleEntries()
214 --entryCount; in handleEntries()
226 std::unique_ptr<Item> item, uint64_t entryCount, const uint8_t* hdrBegin, in handleCompound() argument
234 std::tie(pos, parseClient) = handleEntries(entryCount, hdrBegin, valueBegin, end, typeName, in handleCompound()