/external/lzma/CPP/Common/ |
XzCrc64Reg.cpp | 17 UInt64 _crc;
member in class:CXzCrc64Hasher 19 CXzCrc64Hasher(): _crc(CRC64_INIT_VAL) {}
31 _crc = CRC64_INIT_VAL;
36 _crc = Crc64Update(_crc, data, size);
41 UInt64 val = CRC64_GET_DIGEST(_crc);
|
CrcReg.cpp | 34 UInt32 _crc;
member in class:CCrcHasher 38 CCrcHasher(): _crc(CRC_INIT_VAL) { SetFunctions(0); }
51 _crc = CRC_INIT_VAL;
56 _crc = _updateFunc(_crc, data, size, g_CrcTable);
61 UInt32 val = CRC_GET_DIGEST(_crc);
|
/external/lzma/CPP/7zip/Archive/Common/ |
OutStreamWithCRC.h | 18 UInt32 _crc;
member in class:COutStreamWithCRC 29 _crc = CRC_INIT_VAL;
32 void InitCRC() { _crc = CRC_INIT_VAL; }
34 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 | 16 _crc = CrcUpdate(_crc, data, realProcessed);
33 _crc = CrcUpdate(_crc, data, realProcessed);
44 _crc = CRC_INIT_VAL;
|
/external/lzma/CPP/7zip/Common/ |
InOutTempBuffer.cpp | 38 _crc = CRC_INIT_VAL;
54 _crc = CrcUpdate(_crc, data, processed);
65 _crc = CrcUpdate(_crc, data, cur);
105 return (_crc == crc && size == _size) ? S_OK : E_FAIL;
|
InOutTempBuffer.h | 19 UInt32 _crc;
member in class:CInOutTempBuffer
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/crcmod/python2/crcmod/ |
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/python3/crcmod/ |
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_osx/crcmod/ |
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/ |
7zOut.cpp | 149 _crc = CrcUpdate(_crc, data, size);
162 _crc = CRC_UPDATE_BYTE(_crc, b);
805 _crc = CRC_INIT_VAL;
849 headerCRC = CRC_GET_DIGEST(_crc);
|
7zOut.h | 278 UInt32 _crc;
member in class:NArchive::N7z::COutArchive
|