Home
last modified time | relevance | path

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

/illumos-gate/usr/src/boot/libsa/
H A DMakefile.inc88 objs/adler32.o := CPPFLAGS += -I$(ZLIB)
89 pics/adler32.o := CPPFLAGS += -I$(ZLIB)
112 SRCS += $(ZLIB)/adler32.c $(ZLIB)/crc32.c \
114 OBJECTS += adler32.o crc32.o
/illumos-gate/usr/src/uts/common/io/ppp/spppcomp/
H A Dzlib.h117 #define adler32 z_adler32 macro
1131 ZEXTERN uLong ZEXPORT adler32 OF((uLong adler, const Bytef *buf, uInt len));
H A Dzlib.c962 strm->adler = adler32(strm->adler, dictionary, dictLength);
1396 strm->adler = adler32(strm->adler, strm->next_in, len);
3709 Z_NULL : adler32, (uInt)1 << w))
3902 if (adler32(1L, dictionary, dictLength) != z->adler)
6082 adler32(adler, buf, len) in adler32() function
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/pppdump/
H A Dzlib.h610 extern uLong adler32 OF((uLong adler, Bytef *buf, uInt len));
H A Dzlib.c890 state->adler = adler32(state->adler, strm->next_in, len);
2834 inflate_blocks_new(z, z->state->nowrap ? Z_NULL : adler32, 1 << w))
4603 uLong adler32(adler, buf, len) in adler32() function
/illumos-gate/usr/src/contrib/zlib/
H A Dinflate.c434 (state->flags ? crc32(check, buf, len) : adler32(check, buf, len))
436 # define UPDATE_CHECK(check, buf, len) adler32(check, buf, len)
682 strm->adler = state->check = adler32(0L, Z_NULL, 0); in inflate()
837 strm->adler = state->check = adler32(0L, Z_NULL, 0); in inflate()
1331 dictid = adler32(0L, Z_NULL, 0); in inflateSetDictionary()
1332 dictid = adler32(dictid, dictionary, dictLength); in inflateSetDictionary()
H A Dadler32.c129 uLong ZEXPORT adler32(uLong adler, const Bytef *buf, uInt len) in adler32() function
H A Dzconf.h52 # define adler32 z_adler32 macro
H A Ddeflate.c434 strm->adler = adler32(strm->adler, dictionary, dictLength);
534 adler32(0L, Z_NULL, 0);
879 strm->adler = adler32(0L, Z_NULL, 0);
1216 strm->adler = adler32(strm->adler, buf, len);
H A Dzlib.h1689 ZEXTERN uLong ZEXPORT adler32 OF((uLong adler, const Bytef *buf, uInt len));
H A DChangeLog350 - Make NO_DIVIDE option in adler32.c much faster (thanks to John Reiser)
794 - Make adler32() much faster for small len
866 - Fix error in NO_DIVIDE option of adler32.c
870 - Add experimental NO_DIVIDE #define in adler32.c
1381 - speed up adler32 for modern machines without auto-increment
1478 - avoid various warnings in gzio.c, example.c, infblock.c, adler32.c, zutil.c
1566 - added adler32 and crc32
/illumos-gate/usr/src/contrib/ast/src/cmd/INIT/
H A Dratz.c1161 uLong ZEXPORT adler32(adler, buf, len) in adler32() function
2597 (state->flags ? crc32(check, buf, len) : adler32(check, buf, len))
2599 # define UPDATE(check, buf, len) adler32(check, buf, len)
2848 strm->adler = state->check = adler32(0L, Z_NULL, 0);
2990 strm->adler = state->check = adler32(0L, Z_NULL, 0);
3404 id = adler32(0L, Z_NULL, 0);
3405 id = adler32(id, dictionary, dictLength);
/illumos-gate/usr/src/uts/common/
H A DMakefile.files97 adler32.o crc32.o deflate.o inffast.o \