Home
last modified time | relevance | path

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

/dalvik/tools/hprof-conv/
DHprofConv.c331 static int computeClassDumpLen(const unsigned char* origBuf, int len) in computeClassDumpLen() argument
333 const unsigned char* buf = origBuf; in computeClassDumpLen()
397 DBUG("Total class dump len: %d\n", buf - origBuf); in computeClassDumpLen()
398 return buf - origBuf; in computeClassDumpLen()
404 static int computeInstanceDumpLen(const unsigned char* origBuf, int len) in computeInstanceDumpLen() argument
406 int extraCount = get4BE(origBuf + kIdentSize * 2 + 4); in computeInstanceDumpLen()
413 static int computeObjectArrayDumpLen(const unsigned char* origBuf, int len) in computeObjectArrayDumpLen() argument
415 int arrayCount = get4BE(origBuf + kIdentSize + 4); in computeObjectArrayDumpLen()
422 static int computePrimitiveArrayDumpLen(const unsigned char* origBuf, int len) in computePrimitiveArrayDumpLen() argument
424 int arrayCount = get4BE(origBuf + kIdentSize + 4); in computePrimitiveArrayDumpLen()
[all …]