Lines Matching defs:adler
102 uLong adler; /* adler32 value of the uncompressed data */
334 deflate() sets strm->adler to the adler32 checksum of all input read
472 below), inflate sets strm->adler to the Adler-32 checksum of the dictionary
474 strm->adler to the Adler-32 checksum of all output produced so far (that is,
553 gzip stream is being written, strm->adler is a crc32 instead of an adler32.
614 Upon return of this function, strm->adler is set to the adler32 value
619 adler32 value is not computed and strm->adler is not set.
801 return a Z_DATA_ERROR). If a gzip stream is being decoded, strm->adler is a
1546 ZEXTERN uLong ZEXPORT adler32 OF((uLong adler, const Bytef *buf, uInt len));
1557 uLong adler = adler32(0L, Z_NULL, 0);
1560 adler = adler32(adler, buffer, length);
1562 if (adler != original_adler) error();