Searched refs:getLongLE (Results 1 – 3 of 3) sorted by relevance
415 if (ZipEntry::getLongLE(&buf[0x00]) != kSignature) { in read()426 mCRC32 = ZipEntry::getLongLE(&buf[0x0e]); in read()427 mCompressedSize = ZipEntry::getLongLE(&buf[0x12]); in read()428 mUncompressedSize = ZipEntry::getLongLE(&buf[0x16]); in read()551 if (ZipEntry::getLongLE(&buf[0x00]) != kSignature) { in read()563 mCRC32 = ZipEntry::getLongLE(&buf[0x10]); in read()564 mCompressedSize = ZipEntry::getLongLE(&buf[0x14]); in read()565 mUncompressedSize = ZipEntry::getLongLE(&buf[0x18]); in read()571 mExternalAttrs = ZipEntry::getLongLE(&buf[0x26]); in read()572 mLocalHeaderRelOffset = ZipEntry::getLongLE(&buf[0x2a]); in read()
254 ZipEntry::getLongLE(&buf[i]) == EndOfCentralDir::kSignature) in readCentralDir()332 if (ZipEntry::getLongLE(checkBuf) != EndOfCentralDir::kSignature) { in readCentralDir()1233 if (ZipEntry::getLongLE(&buf[0x00]) != kSignature) in readBuf()1240 mCentralDirSize = ZipEntry::getLongLE(&buf[0x0c]); in readBuf()1241 mCentralDirOffset = ZipEntry::getLongLE(&buf[0x10]); in readBuf()
114 static inline unsigned long getLongLE(const unsigned char* buf) { in getLongLE() function