Lines Matching defs:adler
104 uLong adler; /* Adler-32 or CRC-32 value of the uncompressed data */
233 allocation functions. total_in, total_out, adler, and msg are initialized.
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
385 them to use default allocation functions. total_in, total_out, adler, and
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.
699 set unchanged. total_in, total_out, adler, and msg are initialized.
867 return a Z_DATA_ERROR). If a gzip stream is being decoded, strm->adler is a
965 total_in, total_out, adler, and msg are initialized.
1691 ZEXTERN uLong ZEXPORT adler32(uLong adler, const Bytef *buf, uInt len);
1703 uLong adler = adler32(0L, Z_NULL, 0);
1706 adler = adler32(adler, buffer, length);
1708 if (adler != original_adler) error();
1711 ZEXTERN uLong ZEXPORT adler32_z(uLong adler, const Bytef *buf,