Home | History | Annotate | Download | only in include

Lines Matching defs:adler

4   Copyright (C) 1995-2009 Jean-loup Gailly and Mark Adler
22 Jean-loup Gailly Mark Adler
102 uLong adler; /* adler32 value of the uncompressed data */
332 deflate() sets strm->adler to the adler32 checksum of all input read
467 below), inflate sets strm->adler to the adler32 checksum of the dictionary
469 strm->adler to the adler32 checksum of all output produced so far (that is,
545 gzip stream is being written, strm->adler is a crc32 instead of an adler32.
599 Upon return of this function, strm->adler is set to the adler32 value
604 adler32 value is not computed and strm->adler is not set.
762 return a Z_DATA_ERROR). If a gzip stream is being decoded, strm->adler is
1353 ZEXTERN uLong ZEXPORT adler32 OF((uLong adler, const Bytef *buf, uInt len));
1355 Update a running Adler-32 checksum with the bytes buf[0..len-1] and
1358 An Adler-32 checksum is almost as reliable as a CRC32 but can be computed
1361 uLong adler = adler32(0L, Z_NULL, 0);
1364 adler = adler32(adler, buffer, length);
1366 if (adler != original_adler) error();
1373 Combine two Adler-32 checksums into one. For two sequences of bytes, seq1
1374 and seq2 with lengths len1 and len2, Adler-32 checksums were calculated for
1375 each, adler1 and adler2. adler32_combine() returns the Adler-32 checksum of