Lines Matching refs:adler32
102 uLong adler; /* adler32 value of the uncompressed data */
338 deflate() sets strm->adler to the adler32 checksum of all input read
473 below), inflate sets strm->adler to the adler32 checksum of the dictionary
475 strm->adler to the adler32 checksum of all output produced so far (that is,
477 below. At the end of the stream, inflate() checks that its computed adler32
545 with no zlib header or trailer, and will not compute an adler32 check value.
552 gzip stream is being written, strm->adler is a crc32 instead of an adler32.
608 Upon return of this function, strm->adler is set to the adler32 value
610 which dictionary has been used by the compressor. (The adler32 value
613 adler32 value is not computed and strm->adler is not set.
766 recommended that a check value such as an adler32 or a crc32 be applied to
775 crc32 instead of an adler32.
796 can be determined from the adler32 value returned by that call of inflate.
806 expected one (incorrect adler32 value). inflateSetDictionary does not
1474 ZEXTERN uLong ZEXPORT adler32 OF((uLong adler, const Bytef *buf, uInt len));
1485 uLong adler = adler32(0L, Z_NULL, 0);
1488 adler = adler32(adler, buffer, length);