Home | History | Annotate | Download | only in net

Lines Matching defs:adler

6   Copyright (C) 1995-2002 Jean-loup Gailly and Mark Adler
24 Jean-loup Gailly Mark Adler
379 uLong adler; /* adler32 value of the uncompressed data */
564 deflate() sets strm->adler to the adler32 checksum of all input read
666 below), inflate sets strm-adler to the adler32 checksum of the
668 it sets strm->adler to the adler32 checksum of all output produced
765 Upon return of this function, strm->adler is set to the Adler32 value
1137 Update a running Adler-32 checksum with the bytes buf[0..len-1] and
1140 An Adler-32 checksum is almost as reliable as a CRC32 but can be computed
1143 uLong adler = adler32(0L, Z_NULL, 0);
1146 adler = adler32(adler, buffer, length);
1148 if (adler != original_adler) error();