Searched refs:getLongLE (Results 1 – 3 of 3) sorted by relevance
398 if (ZipEntry::getLongLE(&buf[0x00]) != kSignature) { in read()409 mCRC32 = ZipEntry::getLongLE(&buf[0x0e]); in read()410 mCompressedSize = ZipEntry::getLongLE(&buf[0x12]); in read()411 mUncompressedSize = ZipEntry::getLongLE(&buf[0x16]); in read()534 if (ZipEntry::getLongLE(&buf[0x00]) != kSignature) { in read()546 mCRC32 = ZipEntry::getLongLE(&buf[0x10]); in read()547 mCompressedSize = ZipEntry::getLongLE(&buf[0x14]); in read()548 mUncompressedSize = ZipEntry::getLongLE(&buf[0x18]); in read()554 mExternalAttrs = ZipEntry::getLongLE(&buf[0x26]); in read()555 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()1230 if (ZipEntry::getLongLE(&buf[0x00]) != kSignature) in readBuf()1237 mCentralDirSize = ZipEntry::getLongLE(&buf[0x0c]); in readBuf()1238 mCentralDirOffset = ZipEntry::getLongLE(&buf[0x10]); in readBuf()
120 static inline unsigned long getLongLE(const unsigned char* buf) { in getLongLE() function