Home | History | Annotate | Download | only in examples

Lines Matching defs:crc

104     unsigned long crc = 0;          // accumulated CRC of uncompressed data
142 // tracked, for the calculation of the total CRC.
158 // correctly compute the total CRC.
386 // CRC and the total uncompressed length.
391 // Update the total CRC.
395 crc = crc ? crc32_combine(crc, part, len2) : part;
436 // Write the gzip trailer, which is the CRC and the uncompressed length
438 putc(crc, out);
439 putc(crc >> 8, out);
440 putc(crc >> 16, out);
441 putc(crc >> 24, out);