Lines Matching defs:adler
106 uLong adler; /* Adler-32 or CRC-32 value of the uncompressed data */
235 allocation functions. total_in, total_out, adler, and msg are initialized.
343 deflate() sets strm->adler to the Adler-32 checksum of all input read
345 strm->adler will be the CRC-32 checksum of the input read so far. (See
388 them to use default allocation functions. total_in, total_out, adler, and
489 below), inflate sets strm->adler to the Adler-32 checksum of the dictionary
491 strm->adler to the Adler-32 checksum of all output produced so far (that is,
578 being written, strm->adler is a CRC-32 instead of an Adler-32.
643 Upon return of this function, strm->adler is set to the Adler-32 value
648 Adler-32 value is not computed and strm->adler is not set.
702 set unchanged. total_in, total_out, adler, and msg are initialized.
870 return a Z_DATA_ERROR). If a gzip stream is being decoded, strm->adler is a
968 total_in, total_out, adler, and msg are initialized.
1694 ZEXTERN uLong ZEXPORT adler32(uLong adler, const Bytef *buf, uInt len);
1706 uLong adler = adler32(0L, Z_NULL, 0);
1709 adler = adler32(adler, buffer, length);
1711 if (adler != original_adler) error();
1714 ZEXTERN uLong ZEXPORT adler32_z(uLong adler, const Bytef *buf,