Symbol: adler32
lib/libz/deflate.c
1051
strm->adler = adler32(0L, Z_NULL, 0);
lib/libz/deflate.c
225
strm->adler = adler32(strm->adler, buf, len);
lib/libz/deflate.c
572
strm->adler = adler32(strm->adler, dictionary, dictLength);
lib/libz/deflate.c
667
adler32(0L, Z_NULL, 0);
lib/libz/inflate.c
1287
dictid = adler32(0L, Z_NULL, 0);
lib/libz/inflate.c
1288
dictid = adler32(dictid, dictionary, dictLength);
lib/libz/inflate.c
303
(state->flags ? crc32(check, buf, len) : adler32(check, buf, len))
lib/libz/inflate.c
305
# define UPDATE_CHECK(check, buf, len) adler32(check, buf, len)
lib/libz/inflate.c
562
strm->adler = state->check = adler32(0L, Z_NULL, 0);
lib/libz/inflate.c
729
strm->adler = state->check = adler32(0L, Z_NULL, 0);
lib/libz/zlib.h
1809
ZEXTERN uLong ZEXPORT adler32(uLong adler, const Bytef *buf, uInt len);
sys/arch/amd64/amd64/dkcsum.c
143
csum = adler32(0, bp->b_data, bios_cksumlen * DEV_BSIZE);
sys/arch/amd64/stand/efiboot/diskprobe.c
261
bdi->checksum = adler32(bdi->checksum, buf, DEV_BSIZE);
sys/arch/amd64/stand/libsa/diskprobe.c
369
bdi->checksum = adler32(bdi->checksum, buf, DEV_BSIZE);
sys/arch/i386/i386/dkcsum.c
143
csum = adler32(0, bp->b_data, bios_cksumlen * DEV_BSIZE);
sys/arch/i386/stand/libsa/diskprobe.c
446
bdi->checksum = adler32(bdi->checksum, buf, DEV_BSIZE);
sys/lib/libz/deflate.c
1051
strm->adler = adler32(0L, Z_NULL, 0);
sys/lib/libz/deflate.c
225
strm->adler = adler32(strm->adler, buf, len);
sys/lib/libz/deflate.c
572
strm->adler = adler32(strm->adler, dictionary, dictLength);
sys/lib/libz/deflate.c
667
adler32(0L, Z_NULL, 0);
sys/lib/libz/inflate.c
1287
dictid = adler32(0L, Z_NULL, 0);
sys/lib/libz/inflate.c
1288
dictid = adler32(dictid, dictionary, dictLength);
sys/lib/libz/inflate.c
303
(state->flags ? crc32(check, buf, len) : adler32(check, buf, len))
sys/lib/libz/inflate.c
305
# define UPDATE_CHECK(check, buf, len) adler32(check, buf, len)
sys/lib/libz/inflate.c
562
strm->adler = state->check = adler32(0L, Z_NULL, 0);
sys/lib/libz/inflate.c
729
strm->adler = state->check = adler32(0L, Z_NULL, 0);
sys/lib/libz/zlib.h
1809
ZEXTERN uLong ZEXPORT adler32(uLong adler, const Bytef *buf, uInt len);