Home | History | Annotate | Download | only in net

Lines Matching defs:adler32

375     int   noheader;      /* suppress zlib header and adler32 */
913 strm->adler = adler32(strm->adler, dictionary, dictLength);
1081 /* Save the adler32 of the preset dictionary: */
1169 /* Write the zlib trailer (adler32) */
1282 * Read a new buffer from the current input stream, update the adler32
1300 strm->adler = adler32(strm->adler, strm->next_in, len);
3479 inflate_blocks_new(z, z->state->nowrap ? Z_NULL : adler32, (uInt)1 << w))
3656 if (adler32(1L, dictionary, dictLength) != z->adler) return Z_DATA_ERROR;
5827 /* +++ adler32.c */
5828 /* adler32.c -- compute the Adler-32 checksum of a data stream
5848 uLong ZEXPORT adler32(uLong adler, const Bytef *buf, uInt len)
5873 /* --- adler32.c */