Searched refs:_crc (Results 1 – 13 of 13) sorted by relevance
/external/lzma/CPP/Common/ |
D | XzCrc64Reg.cpp | 17 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_()
|
D | CrcReg.cpp | 34 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/ |
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 | 16 _crc = CrcUpdate(_crc, data, realProcessed); in Read() 33 _crc = CrcUpdate(_crc, data, realProcessed); in Read() 44 _crc = CRC_INIT_VAL; in Seek()
|
D | OutStreamWithCRC.h | 18 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()
|
D | OutStreamWithCRC.cpp | 13 _crc = CrcUpdate(_crc, data, size); in Write()
|
/external/lzma/CPP/7zip/Common/ |
D | InOutTempBuffer.cpp | 38 _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()
|
D | InOutTempBuffer.h | 19 UInt32 _crc; variable
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/crcmod/python3/crcmod/ |
D | crcmod.py | 104 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/ |
D | crcmod.py | 103 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/ |
D | crcmod.py | 103 self._crc = crcfun 125 n._crc = self._crc 151 self.crcValue = self._crc(data, self.crcValue)
|
/external/lzma/CPP/7zip/Archive/7z/ |
D | 7zOut.cpp | 149 _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()
|
D | 7zOut.h | 278 UInt32 _crc; variable
|