Home
last modified time | relevance | path

Searched refs:_crc (Results 1 – 13 of 13) sorted by relevance

/external/lzma/CPP/Common/
DXzCrc64Reg.cpp17 UInt64 _crc; member in CXzCrc64Hasher
19 CXzCrc64Hasher(): _crc(CRC64_INIT_VAL) {} in CXzCrc64Hasher()
31 _crc = CRC64_INIT_VAL; in STDMETHODIMP_()
36 _crc = Crc64Update(_crc, data, size); in STDMETHODIMP_()
41 UInt64 val = CRC64_GET_DIGEST(_crc); in STDMETHODIMP_()
DCrcReg.cpp34 UInt32 _crc; member in CCrcHasher
38 CCrcHasher(): _crc(CRC_INIT_VAL) { SetFunctions(0); } in CCrcHasher()
51 _crc = CRC_INIT_VAL; in STDMETHODIMP_()
56 _crc = _updateFunc(_crc, data, size, g_CrcTable); in STDMETHODIMP_()
61 UInt32 val = CRC_GET_DIGEST(_crc); in STDMETHODIMP_()
/external/lzma/CPP/7zip/Archive/Common/
DInStreamWithCRC.h23 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()
DInStreamWithCRC.cpp16 _crc = CrcUpdate(_crc, data, realProcessed); in Read()
33 _crc = CrcUpdate(_crc, data, realProcessed); in Read()
44 _crc = CRC_INIT_VAL; in Seek()
DOutStreamWithCRC.h18 UInt32 _crc; variable
29 _crc = CRC_INIT_VAL;
32 void InitCRC() { _crc = CRC_INIT_VAL; } in InitCRC()
34 UInt32 GetCRC() const { return CRC_GET_DIGEST(_crc); } in GetCRC()
DOutStreamWithCRC.cpp13 _crc = CrcUpdate(_crc, data, size); in Write()
/external/lzma/CPP/7zip/Common/
DInOutTempBuffer.cpp38 _crc = CRC_INIT_VAL; in InitWriting()
54 _crc = CrcUpdate(_crc, data, processed); in WriteToFile()
65 _crc = CrcUpdate(_crc, data, cur); in Write()
105 return (_crc == crc && size == _size) ? S_OK : E_FAIL; in WriteToStream()
DInOutTempBuffer.h19 UInt32 _crc; variable
/external/chromium-trace/catapult/third_party/gsutil/third_party/crcmod/python3/crcmod/
Dcrcmod.py104 self._crc = crcfun
126 n._crc = self._crc
152 self.crcValue = self._crc(data, self.crcValue)
/external/chromium-trace/catapult/third_party/gsutil/third_party/crcmod/python2/crcmod/
Dcrcmod.py103 self._crc = crcfun
125 n._crc = self._crc
151 self.crcValue = self._crc(data, self.crcValue)
/external/chromium-trace/catapult/third_party/gsutil/third_party/crcmod_osx/crcmod/
Dcrcmod.py103 self._crc = crcfun
125 n._crc = self._crc
151 self.crcValue = self._crc(data, self.crcValue)
/external/lzma/CPP/7zip/Archive/7z/
D7zOut.cpp149 _crc = CrcUpdate(_crc, data, size); in WriteBytes()
162 _crc = CRC_UPDATE_BYTE(_crc, b); in WriteByte()
805 _crc = CRC_INIT_VAL; in WriteDatabase()
849 headerCRC = CRC_GET_DIGEST(_crc); in WriteDatabase()
D7zOut.h278 UInt32 _crc; variable