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
386 them to use default allocation functions. total_in, total_out, adler, and
487 below), inflate sets strm->adler to the Adler-32 checksum of the dictionary
489 strm->adler to the Adler-32 checksum of all output produced so far (that is,
576 being written, strm->adler is a CRC-32 instead of an Adler-32.
641 Upon return of this function, strm->adler is set to the Adler-32 value
646 Adler-32 value is not computed and strm->adler is not set.
700 set unchanged. total_in, total_out, adler, and msg are initialized.
868 return a Z_DATA_ERROR). If a gzip stream is being decoded, strm->adler is a
966 total_in, total_out, adler, and msg are initialized.
1692 ZEXTERN uLong ZEXPORT adler32(uLong adler, const Bytef *buf, uInt len);
1704 uLong adler = adler32(0L, Z_NULL, 0);
1707 adler = adler32(adler, buffer, length);
1709 if (adler != original_adler) error();
1712 ZEXTERN uLong ZEXPORT adler32_z(uLong adler, const Bytef *buf,