OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:_crc
(Results
1 - 6
of
6
) sorted by null
/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/
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
); }
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
); }
/external/lzma/CPP/7zip/Common/
InOutTempBuffer.h
19
UInt32
_crc
;
member in class:CInOutTempBuffer
/external/lzma/CPP/7zip/Archive/7z/
7zOut.h
278
UInt32
_crc
;
member in class:NArchive::N7z::COutArchive
Completed in 4816 milliseconds