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
475 below), inflate sets strm->adler to the Adler-32 checksum of the dictionary
477 strm->adler to the Adler-32 checksum of all output produced so far (that is,
556 gzip stream is being written, strm->adler is a crc32 instead of an adler32.
617 Upon return of this function, strm->adler is set to the adler32 value
622 adler32 value is not computed and strm->adler is not set.
804 return a Z_DATA_ERROR). If a gzip stream is being decoded, strm->adler is a
1569 ZEXTERN uLong ZEXPORT adler32 OF((uLong adler, const Bytef *buf, uInt len));
1580 uLong adler = adler32(0L, Z_NULL, 0);
1583 adler = adler32(adler, buffer, length);
1585 if (adler != original_adler) error();