Searched refs:_crc (Results 1 – 8 of 8) sorted by relevance
/external/lzma/CPP/7zip/Archive/Common/ |
D | InStreamWithCRC.h | 23 UInt32 _crc; variable 31 _crc = CRC_INIT_VAL; in Init() 34 UInt32 GetCRC() const { return CRC_GET_DIGEST(_crc); } in GetCRC() 51 UInt32 _crc; variable 59 _crc = CRC_INIT_VAL; in Init() 62 UInt32 GetCRC() const { return CRC_GET_DIGEST(_crc); } in GetCRC()
|
D | InStreamWithCRC.cpp | 14 _crc = CrcUpdate(_crc, data, realProcessedSize); in Read() 29 _crc = CrcUpdate(_crc, data, realProcessedSize); in Read() 40 _crc = CRC_INIT_VAL; in Seek()
|
D | OutStreamWithCRC.h | 18 UInt32 _crc; variable 29 _crc = CRC_INIT_VAL; 31 void InitCRC() { _crc = CRC_INIT_VAL; } in InitCRC() 33 UInt32 GetCRC() const { return CRC_GET_DIGEST(_crc); } in GetCRC()
|
D | OutStreamWithCRC.cpp | 13 _crc = CrcUpdate(_crc, data, size); in Write()
|
/external/lzma/CPP/7zip/Common/ |
D | InOutTempBuffer.cpp | 36 _crc = CRC_INIT_VAL; in InitWriting() 57 _crc = CrcUpdate(_crc, data, processed); in WriteToFile() 68 _crc = CrcUpdate(_crc, data, cur); in Write() 108 return (_crc == crc && size == _size) ? S_OK : E_FAIL; in WriteToStream()
|
D | InOutTempBuffer.h | 21 UInt32 _crc; variable
|
/external/lzma/CPP/7zip/Archive/7z/ |
D | 7zOut.cpp | 167 _crc = CrcUpdate(_crc, data, size); in WriteBytes() 180 _crc = CRC_UPDATE_BYTE(_crc, b); in WriteByte() 772 _crc = CRC_INIT_VAL; in WriteDatabase() 816 headerCRC = CRC_GET_DIGEST(_crc); in WriteDatabase()
|
D | 7zOut.h | 113 UInt32 _crc; variable
|