Home
last modified time | relevance | path

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

/dalvik/libdex/
DZipArchive.cpp124 static u2 get2LE(unsigned char const* pSrc) in get2LE() function
186 u4 numEntries = get2LE(eocdPtr + kEOCDNumEntries); in mapCentralDirectory0()
313 fileNameLen = get2LE(ptr + kCDENameLen); in parseZipArchive()
314 extraLen = get2LE(ptr + kCDEExtraLen); in parseZipArchive()
315 commentLen = get2LE(ptr + kCDECommentLen); in parseZipArchive()
500 int method = get2LE(ptr + kCDEMethod); in dexZipGetEntryInfo()
557 + get2LE(lfhBuf + kLFHNameLen) + get2LE(lfhBuf + kLFHExtraLen); in dexZipGetEntryInfo()
/dalvik/dexdump/
DDexDump.cpp86 static inline u2 get2LE(unsigned char const* pSrc) in get2LE() function
870 u2 instr = get2LE((const u1*) &insns[insnIdx]); in dumpInstruction()
1089 instr = get2LE((const u1*)insns); in dumpBytecodes()
1091 insnWidth = 4 + get2LE((const u1*)(insns+1)) * 2; in dumpBytecodes()
1093 insnWidth = 2 + get2LE((const u1*)(insns+1)) * 4; in dumpBytecodes()
1095 int width = get2LE((const u1*)(insns+1)); in dumpBytecodes()
1096 int size = get2LE((const u1*)(insns+2)) | in dumpBytecodes()
1097 (get2LE((const u1*)(insns+3))<<16); in dumpBytecodes()
/dalvik/vm/
DBits.h76 INLINE u2 get2LE(unsigned char const* pSrc) in get2LE() function