HomeSort by relevance Sort by last modified time
    Searched refs:get4LE (Results 1 - 11 of 11) sorted by null

  /frameworks/base/libs/utils/
ObbFile.cpp 152 unsigned int fileSig = get4LE((unsigned char*)footer + sizeof(int32_t));
159 footerSize = get4LE((unsigned char*)footer);
202 uint32_t sigVersion = get4LE((unsigned char*)scanBuf);
209 mVersion = (int32_t) get4LE((unsigned char*)scanBuf + kPackageVersionOffset);
210 mFlags = (int32_t) get4LE((unsigned char*)scanBuf + kFlagsOffset);
214 uint32_t packageNameLen = get4LE((unsigned char*)scanBuf + kPackageNameLenOffset);
ZipFileRO.cpp 219 unsigned int header = get4LE(scanBuf);
266 if (scanBuf[i] == 0x50 && get4LE(&scanBuf[i]) == kEOCDSignature) {
287 unsigned int dirSize = get4LE(eocdPtr + kEOCDSize);
288 unsigned int dirOffset = get4LE(eocdPtr + kEOCDFileOffset);
343 if (get4LE(ptr) != kCDESignature) {
352 long localHdrOffset = (long) get4LE(ptr + kCDELocalOffset);
501 *pModWhen = get4LE(ptr + kCDEModWhen);
503 *pCrc32 = get4LE(ptr + kCDECRC);
505 size_t compLen = get4LE(ptr + kCDECompLen);
508 size_t uncompLen = get4LE(ptr + kCDEUncompLen)
    [all...]
ZipUtils.cpp 339 *pCRC32 = ZipFileRO::get4LE(&buf[0]);
340 *pUncompressedLen = ZipFileRO::get4LE(&buf[4]);
  /dalvik/libdex/
ZipArchive.c 129 static u4 get4LE(unsigned char const* pSrc)
200 if (scanBuf[i] == 0x50 && get4LE(&scanBuf[i]) == kEOCDSignature) {
220 u4 dirSize = get4LE(eocdPtr + kEOCDSize);
221 u4 dirOffset = get4LE(eocdPtr + kEOCDFileOffset);
286 if (get4LE(ptr) != kCDESignature) {
295 long localHdrOffset = (long) get4LE(ptr + kCDELocalOffset);
494 *pModWhen = get4LE(ptr + kCDEModWhen);
496 *pCrc32 = get4LE(ptr + kCDECRC);
498 size_t compLen = get4LE(ptr + kCDECompLen);
501 size_t uncompLen = get4LE(ptr + kCDEUncompLen)
    [all...]
  /frameworks/base/include/utils/
ObbFile.h 106 static inline uint32_t get4LE(const unsigned char* buf) {
ZipFileRO.h 182 static inline unsigned long get4LE(const unsigned char* buf) {
  /bootable/recovery/minzip/
Zip.c 199 val = get4LE(pMap->addr);
215 if (*ptr == (ENDSIG & 0xff) && get4LE(ptr) == ENDSIG)
230 cdOffset = get4LE(ptr + ENDOFF);
259 if (get4LE(ptr) != CENSIG) {
264 localHdrOffset = get4LE(ptr + CENOFF);
337 pEntry->compLen = get4LE(ptr + CENSIZ);
338 pEntry->uncompLen = get4LE(ptr + CENLEN);
340 pEntry->modTime = get4LE(ptr + CENTIM);
341 pEntry->crc32 = get4LE(ptr + CENCRC);
353 pEntry->externalFileAttributes = get4LE(ptr + CENATX)
    [all...]
Bits.h 85 INLINE unsigned int get4LE(unsigned char const* pSrc)
  /system/core/liblog/
logprint.c 371 static inline uint32_t get4LE(const uint8_t* src)
426 ival = get4LE(eventData);
468 strLen = get4LE(eventData);
579 tagIndex = get4LE(eventData);
  /dalvik/vm/
Bits.h 84 INLINE u4 get4LE(unsigned char const* pSrc)
  /dalvik/dexdump/
DexDump.c 92 static inline u4 get4LE(unsigned char const* pSrc)
    [all...]

Completed in 290 milliseconds