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

  /external/lzma/CPP/7zip/Archive/Common/
OutStreamWithCRC.h 18 UInt32 _crc; member in class:COutStreamWithCRC
29 _crc = CRC_INIT_VAL;
31 void InitCRC() { _crc = CRC_INIT_VAL; }
33 UInt32 GetCRC() const { return CRC_GET_DIGEST(_crc); }
OutStreamWithCRC.cpp 13 _crc = CrcUpdate(_crc, data, size);
InStreamWithCRC.h 23 UInt32 _crc; member in class:CSequentialInStreamWithCRC
31 _crc = CRC_INIT_VAL;
34 UInt32 GetCRC() const { return CRC_GET_DIGEST(_crc); }
51 UInt32 _crc; member in class:CInStreamWithCRC
59 _crc = CRC_INIT_VAL;
62 UInt32 GetCRC() const { return CRC_GET_DIGEST(_crc); }
InStreamWithCRC.cpp 14 _crc = CrcUpdate(_crc, data, realProcessedSize);
29 _crc = CrcUpdate(_crc, data, realProcessedSize);
40 _crc = CRC_INIT_VAL;
  /external/lzma/CPP/7zip/Common/
InOutTempBuffer.cpp 36 _crc = CRC_INIT_VAL;
57 _crc = CrcUpdate(_crc, data, processed);
68 _crc = CrcUpdate(_crc, data, cur);
108 return (_crc == crc && size == _size) ? S_OK : E_FAIL;
InOutTempBuffer.h 21 UInt32 _crc; member in class:CInOutTempBuffer
  /external/lzma/CPP/7zip/Archive/7z/
7zOut.h 113 UInt32 _crc; member in class:NArchive::N7z::COutArchive
7zOut.cpp 167 _crc = CrcUpdate(_crc, data, size);
180 _crc = CRC_UPDATE_BYTE(_crc, b);
772 _crc = CRC_INIT_VAL;
816 headerCRC = CRC_GET_DIGEST(_crc);

Completed in 533 milliseconds