Searched defs:adler32 (Results 1 - 7 of 7) sorted by relevance

/illumos-gate/usr/src/uts/common/zmod/
H A Dadler32.c0 /* adler32.c -- compute the Adler-32 checksum of a data stream
57 uLong ZEXPORT adler32(adler, buf, len) function
H A Dzconf.h93 #define adler32 z_adler32 macro
/illumos-gate/usr/src/boot/lib/libz/
H A Dadler32.c0 /* adler32.c -- compute the Adler-32 checksum of a data stream
65 uLong ZEXPORT adler32(adler, buf, len) function
145 /* for negative len, return invalid adler32 as a clue for debugging */
H A Dzconf.h29 # define adler32 z_adler32 macro
/illumos-gate/usr/src/uts/common/io/ppp/spppcomp/
H A Dzlib.h119 #define adler32 z_adler32 macro
423 uLong adler; /* adler32 value of the uncompressed data */
1133 ZEXTERN uLong ZEXPORT adler32 OF((uLong adler, const Bytef *buf, uInt len));
1142 * uLong adler = adler32(0L, Z_NULL, 0);
1145 * adler = adler32(adler, buffer, length);
H A Dzlib.c370 int noheader; /* suppress zlib header and adler32 */
964 strm->adler = adler32(strm->adler, dictionary, dictLength);
1153 /* Save the adler32 of the preset dictionary: */
1257 /* Write the zlib trailer (adler32) */
1377 * Read a new buffer from the current input stream, update the adler32
1398 strm->adler = adler32(strm->adler, strm->next_in, len);
3711 Z_NULL : adler32, (uInt)1 << w))
3904 if (adler32(1L, dictionary, dictLength) != z->adler)
6061 /* +++ adler32.c */
6063 * adler32
6084 adler32(adler, buf, len) function
[all...]
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/pppdump/
H A Dzlib.c222 uLong adler; /* adler32 of uncompressed data */
223 int noheader; /* suppress zlib header and adler32 */
842 /* Write the zlib trailer (adler32) */
873 * Read a new buffer from the current input stream, update the adler32
890 state->adler = adler32(state->adler, strm->next_in, len);
2834 inflate_blocks_new(z, z->state->nowrap ? Z_NULL : adler32, 1 << w))
4571 /* adler32.c -- compute the Adler-32 checksum of a data stream
4576 /* From: adler32.c,v 1.6 1995/05/03 17:27:08 jloup Exp */
4589 uLong adler32(adler, buf, len) function

Completed in 211 milliseconds