Home | History | Annotate | Download | only in zlib

Lines Matching refs:adler32

410 /* check function to use adler32() for zlib or crc32() for gzip */
413 (state->flags ? crc32(check, buf, len) : adler32(check, buf, len))
415 # define UPDATE(check, buf, len) adler32(check, buf, len)
666 strm->adler = state->check = adler32(0L, Z_NULL, 0);
808 strm->adler = state->check = adler32(0L, Z_NULL, 0);
1268 id = adler32(0L, Z_NULL, 0);
1269 id = adler32(id, dictionary, dictLength);