Home | History | Annotate | Download | only in zlib-1.2.3

Lines Matching refs:adler32

375 /* check function to use adler32() for zlib or crc32() for gzip */
378 (state->flags ? crc32(check, buf, len) : adler32(check, buf, len))
380 # define UPDATE(check, buf, len) adler32(check, buf, len)
629 strm->adler = state->check = adler32(0L, Z_NULL, 0);
771 strm->adler = state->check = adler32(0L, Z_NULL, 0);
1185 id = adler32(0L, Z_NULL, 0);
1186 id = adler32(id, dictionary, dictLength);