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

/external/lzma/CPP/7zip/Archive/7z/
H A D7zOut.cpp167 _crc = CrcUpdate(_crc, data, size);
180 _crc = CRC_UPDATE_BYTE(_crc, b);
772 _crc = CRC_INIT_VAL;
816 headerCRC = CRC_GET_DIGEST(_crc);
H A D7zOut.h113 UInt32 _crc; member in class:NArchive::N7z::COutArchive
/external/lzma/CPP/7zip/Archive/Common/
H A DInStreamWithCRC.cpp14 _crc = CrcUpdate(_crc, data, realProcessedSize);
29 _crc = CrcUpdate(_crc, data, realProcessedSize);
40 _crc = CRC_INIT_VAL;
H A DInStreamWithCRC.h23 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); }
H A DOutStreamWithCRC.cpp13 _crc = CrcUpdate(_crc, data, size);
H A DOutStreamWithCRC.h18 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); }
/external/lzma/CPP/7zip/Common/
H A DInOutTempBuffer.cpp36 _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;
H A DInOutTempBuffer.h21 UInt32 _crc; member in class:CInOutTempBuffer

Completed in 4105 milliseconds