Home
last modified time | relevance | path

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

/dalvik/libdex/
DZipArchive.c121 static u2 get2LE(unsigned char const* pSrc) in get2LE() function
219 u4 numEntries = get2LE(eocdPtr + kEOCDNumEntries); in mapCentralDirectory()
302 fileNameLen = get2LE(ptr + kCDENameLen); in parseZipArchive()
303 extraLen = get2LE(ptr + kCDEExtraLen); in parseZipArchive()
304 commentLen = get2LE(ptr + kCDECommentLen); in parseZipArchive()
489 int method = get2LE(ptr + kCDEMethod); in dexZipGetEntryInfo()
546 + get2LE(lfhBuf + kLFHNameLen) + get2LE(lfhBuf + kLFHExtraLen); in dexZipGetEntryInfo()
/dalvik/dexdump/
DDexDump.c84 static inline u2 get2LE(unsigned char const* pSrc) in get2LE() function
722 u2 instr = get2LE((const u1*) &insns[insnIdx]); in dumpInstruction()
1059 instr = get2LE((const u1*)insns); in dumpBytecodes()
1061 insnWidth = 4 + get2LE((const u1*)(insns+1)) * 2; in dumpBytecodes()
1063 insnWidth = 2 + get2LE((const u1*)(insns+1)) * 4; in dumpBytecodes()
1065 int width = get2LE((const u1*)(insns+1)); in dumpBytecodes()
1066 int size = get2LE((const u1*)(insns+2)) | in dumpBytecodes()
1067 (get2LE((const u1*)(insns+3))<<16); in dumpBytecodes()
/dalvik/vm/
DBits.h76 INLINE u2 get2LE(unsigned char const* pSrc) in get2LE() function