Lines Matching defs:adler
102 uLong adler; /* adler32 value of the uncompressed data */
333 deflate() sets strm->adler to the adler32 checksum of all input read
468 below), inflate sets strm->adler to the adler32 checksum of the dictionary
470 strm->adler to the adler32 checksum of all output produced so far (that is,
547 gzip stream is being written, strm->adler is a crc32 instead of an adler32.
603 Upon return of this function, strm->adler is set to the adler32 value
608 adler32 value is not computed and strm->adler is not set.
769 return a Z_DATA_ERROR). If a gzip stream is being decoded, strm->adler is a
1469 ZEXTERN uLong ZEXPORT adler32 OF((uLong adler, const Bytef *buf, uInt len));
1480 uLong adler = adler32(0L, Z_NULL, 0);
1483 adler = adler32(adler, buffer, length);
1485 if (adler != original_adler) error();