Lines Matching refs:crc
124 int hcrc; /* true if there was or will be a header crc */
555 header crc, and the operating system will be set to 255 (unknown). If a
756 available there. If hcrc is true, a gzip header crc is included. Note that
758 1.3.x) do not support header crc's, and will report that it is a "multi-part
1131 and decode gzip streams (to avoid linking crc code)
1600 ZEXTERN uLong ZEXPORT crc32 OF((uLong crc, const Bytef *buf, uInt len));
1604 initial value for the crc. Pre- and post-conditioning (one's complement) is
1609 uLong crc = crc32(0L, Z_NULL, 0);
1612 crc = crc32(crc, buffer, length);
1614 if (crc != original_crc) error();