Lines Matching defs:crc
49 static SRes WriteBytes_UpdateCrc(ISeqOutStreamPtr s, const void *buf, size_t size, UInt32 *crc)
51 *crc = CrcUpdate(*crc, buf, size);
58 UInt32 crc;
63 crc = CrcCalc(header + XZ_SIG_SIZE, XZ_STREAM_FLAGS_SIZE);
64 SetUi32(header + XZ_SIG_SIZE + XZ_STREAM_FLAGS_SIZE, crc)
198 UInt32 crc = CRC_INIT_VAL;
203 RINOK(WriteBytes_UpdateCrc(s, buf, pos, &crc))
204 RINOK(WriteBytes_UpdateCrc(s, p->blocks, p->size, &crc))
213 crc = CrcUpdate(crc, buf + 4 - pos, pos);
214 SetUi32(buf + 4, CRC_GET_DIGEST(crc))