Lines Matching refs:adler32
102 uLong adler; /* adler32 value of the uncompressed data */
334 deflate() sets strm->adler to the adler32 checksum of all input read
479 below. At the end of the stream, inflate() checks that its computed adler32
489 gzip-wrapped deflate data, strm->adler32 is set to the CRC-32 of the output
549 with no zlib header or trailer, and will not compute an adler32 check value.
556 gzip stream is being written, strm->adler is a crc32 instead of an adler32.
617 Upon return of this function, strm->adler is set to the adler32 value
619 which dictionary has been used by the compressor. (The adler32 value
622 adler32 value is not computed and strm->adler is not set.
796 recommended that a check value such as an adler32 or a crc32 be applied to
805 crc32 instead of an adler32.
826 can be determined from the adler32 value returned by that call of inflate.
837 expected one (incorrect adler32 value). inflateSetDictionary does not
1569 ZEXTERN uLong ZEXPORT adler32 OF((uLong adler, const Bytef *buf, uInt len));
1580 uLong adler = adler32(0L, Z_NULL, 0);
1583 adler = adler32(adler, buffer, length);