Searched refs:z_crc32 (Results 1 - 6 of 6) sorted by relevance

/darwin-on-arm/xnu/libkern/libkern/
H A Dzconf.h69 # define crc32 z_crc32
H A Dzlib.h1317 ZEXTERN uLong ZEXPORT z_crc32 OF((uLong crc, const Bytef *buf, uInt len));
/darwin-on-arm/xnu/libkern/zlib/
H A Ddeflate.c410 s->wrap == 2 ? z_crc32(0L, Z_NULL, 0) :
609 strm->adler = z_crc32(0L, Z_NULL, 0);
645 strm->adler = z_crc32(strm->adler, s->pending_buf,
688 strm->adler = z_crc32(strm->adler, s->pending_buf + beg,
699 strm->adler = z_crc32(strm->adler, s->pending_buf + beg,
717 strm->adler = z_crc32(strm->adler, s->pending_buf + beg,
730 strm->adler = z_crc32(strm->adler, s->pending_buf + beg,
748 strm->adler = z_crc32(strm->adler, s->pending_buf + beg,
761 strm->adler = z_crc32(strm->adler, s->pending_buf + beg,
776 strm->adler = z_crc32(
[all...]
H A Dinflate.c404 /* check function to use adler32() for zlib or z_crc32() for gzip */
407 (state->flags ? z_crc32(check, buf, len) : adler32(check, buf, len))
418 check = z_crc32(check, hbuf, 2); \
427 check = z_crc32(check, hbuf, 4); \
626 state->check = z_crc32(0L, Z_NULL, 0);
722 state->check = z_crc32(state->check, next, copy);
743 state->check = z_crc32(state->check, next, copy);
764 state->check = z_crc32(state->check, next, copy);
786 strm->adler = state->check = z_crc32(0L, Z_NULL, 0);
H A Dgzio.c150 s->crc = z_crc32(0L, Z_NULL, 0);
497 s->crc = z_crc32(s->crc, start, (uInt)(s->stream.next_out - start));
511 s->crc = z_crc32(0L, Z_NULL, 0);
517 s->crc = z_crc32(s->crc, start, (uInt)(s->stream.next_out - start));
616 s->crc = z_crc32(s->crc, (const Bytef *)buf, len);
896 s->crc = z_crc32(0L, Z_NULL, 0);
H A Dcrc32.c246 unsigned long ZEXPORT z_crc32(crc, buf, len) function

Completed in 24 milliseconds