Lines Matching defs:adler
99 uLong adler; /* adler32 value of the uncompressed data */
309 deflate() sets strm->adler to the adler32 checksum of all input read
431 below), inflate sets strm->adler to the adler32 checksum of the dictionary
433 strm->adler to the adler32 checksum of all output produced so far (that is,
509 gzip stream is being written, strm->adler is a crc32 instead of an adler32.
563 Upon return of this function, strm->adler is set to the adler32 value
568 adler32 value is not computed and strm->adler is not set.
725 return a Z_DATA_ERROR). If a gzip stream is being decoded, strm->adler is
1287 ZEXTERN uLong ZEXPORT adler32 OF((uLong adler, const Bytef *buf, uInt len));
1295 uLong adler = adler32(0L, Z_NULL, 0);
1298 adler = adler32(adler, buffer, length);
1300 if (adler != original_adler) error();