Lines Matching defs:adler
104 uLong adler; /* Adler-32 or CRC-32 value of the uncompressed data */
341 deflate() sets strm->adler to the Adler-32 checksum of all input read
343 strm->adler will be the CRC-32 checksum of the input read so far. (See
486 below), inflate sets strm->adler to the Adler-32 checksum of the dictionary
488 strm->adler to the Adler-32 checksum of all output produced so far (that is,
575 being written, strm->adler is a CRC-32 instead of an Adler-32.
640 Upon return of this function, strm->adler is set to the Adler-32 value
645 Adler-32 value is not computed and strm->adler is not set.
866 return a Z_DATA_ERROR). If a gzip stream is being decoded, strm->adler is a
1689 ZEXTERN uLong ZEXPORT adler32 OF((uLong adler, const Bytef *buf, uInt len));
1701 uLong adler = adler32(0L, Z_NULL, 0);
1704 adler = adler32(adler, buffer, length);
1706 if (adler != original_adler) error();
1709 ZEXTERN uLong ZEXPORT adler32_z OF((uLong adler, const Bytef *buf,