Home
last modified time | relevance | path

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

/dalvik/tools/hprof-conv/
DHprofConv.c406 int arrayCount = get4BE(origBuf + kIdentSize + 4); in computeObjectArrayDumpLen() local
407 return kIdentSize * 2 + 8 + arrayCount * kIdentSize; in computeObjectArrayDumpLen()
415 int arrayCount = get4BE(origBuf + kIdentSize + 4); in computePrimitiveArrayDumpLen() local
419 return kIdentSize + 9 + arrayCount * basicLen; in computePrimitiveArrayDumpLen()
/dalvik/libdex/
DDexFile.c172 int arrayCount = 0; in dexIsValidTypeDescriptor() local
175 arrayCount++; in dexIsValidTypeDescriptor()
179 if (arrayCount > 255) { in dexIsValidTypeDescriptor()
198 return (arrayCount == 0) && (*s == '\0'); in dexIsValidTypeDescriptor()