Home
last modified time | relevance | path

Searched refs:adler32 (Results 1 – 16 of 16) sorted by relevance

/f-stack/app/nginx-1.16.1/auto/lib/zlib/
H A Dmakefile.bcc11 bcc32 -c $(CFLAGS) adler32.c crc32.c deflate.c \
15 tlib zlib.lib +adler32.obj +crc32.obj +deflate.obj \
H A Dmakefile.owc11 wcl386 -c $(CFLAGS) adler32.c crc32.c deflate.c trees.c zutil.c &
13 wlib -n zlib.lib adler32.obj crc32.obj deflate.obj trees.obj &
H A Dmakefile.msvc11 cl -c $(CFLAGS) adler32.c crc32.c deflate.c \
15 link -lib -out:zlib.lib adler32.obj crc32.obj deflate.obj \
H A Dconf22 CORE_LIBS="$CORE_LIBS $ZLIB/adler32.o"
/f-stack/freebsd/contrib/octeon-sdk/
H A Dcvmx-zip.h193 uint64_t adler32 : 32; member
195 uint64_t adler32 : 32; member
/f-stack/freebsd/contrib/openzfs/module/os/linux/zfs/
H A Dqat_compress.c259 Cpa32U adler32 = 0; in qat_compress_impl() local
472 adler32 = *(Cpa32U *)(src + dc_results.consumed + ZLIB_HEAD_SZ); in qat_compress_impl()
473 if (adler32 != BSWAP_32(dc_results.checksum)) { in qat_compress_impl()
/f-stack/dpdk/drivers/compress/octeontx/include/
H A Dzip_regs.h532 uint64_t adler32 : 32; member
534 uint64_t adler32 : 32;
/f-stack/freebsd/contrib/zlib/
H A Dinflate.c451 (state->flags ? crc32(check, buf, len) : adler32(check, buf, len))
453 # define UPDATE(check, buf, len) adler32(check, buf, len)
701 strm->adler = state->check = adler32(0L, Z_NULL, 0);
847 strm->adler = state->check = adler32(0L, Z_NULL, 0);
1331 dictid = adler32(0L, Z_NULL, 0);
1332 dictid = adler32(dictid, dictionary, dictLength);
H A Dadler32.c134 uLong ZEXPORT adler32(adler, buf, len) in adler32() function
H A Dzconf.h35 # define adler32 z_adler32 macro
H A Ddeflate.c399 strm->adler = adler32(strm->adler, dictionary, dictLength);
499 adler32(0L, Z_NULL, 0);
841 strm->adler = adler32(0L, Z_NULL, 0);
1181 strm->adler = adler32(strm->adler, buf, len);
H A Dzlib.h1692 ZEXTERN uLong ZEXPORT adler32 OF((uLong adler, const Bytef *buf, uInt len));
H A DChangeLog287 - Make NO_DIVIDE option in adler32.c much faster (thanks to John Reiser)
731 - Make adler32() much faster for small len
803 - Fix error in NO_DIVIDE option of adler32.c
807 - Add experimental NO_DIVIDE #define in adler32.c
1318 - speed up adler32 for modern machines without auto-increment
1415 - avoid various warnings in gzio.c, example.c, infblock.c, adler32.c, zutil.c
1503 - added adler32 and crc32
H A Dzconf.h.in29 # define adler32 z_adler32 macro
/f-stack/freebsd/contrib/zlib/doc/
H A Drfc1950.txt557 /* Return the adler32 of the bytes buf[0..len-1] */
567 unsigned long adler32(unsigned char *buf, int len)
/f-stack/freebsd/contrib/zstd/zlibWrapper/
H A Dzstd_zlibwrapper.c1149 return adler32(adler, buf, len); in z_adler32()