Home | History | Annotate | Download | only in net

Lines Matching defs:adler32

84 #  define adler32	z_adler32
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
671 checks that its computed adler32 checksum is equal to that saved by the
679 adler32 checksum), Z_STREAM_ERROR if the stream structure was inconsistent
765 Upon return of this function, strm->adler is set to the Adler32 value
767 which dictionary has been used by the compressor. (The Adler32 value
868 can be determined from the Adler32 value returned by this call of
875 expected one (incorrect Adler32 value). inflateSetDictionary does not
1134 ZEXTERN uLong ZEXPORT adler32(uLong, const Bytef *, uInt);
1143 uLong adler = adler32(0L, Z_NULL, 0);
1146 adler = adler32(adler, buffer, length);