Searched refs:adler32 (Results 1 - 17 of 17) sorted by relevance

/illumos-gate/usr/src/boot/lib/libz/
H A DSymbol.map18 adler32;
H A DMakefile21 SRCS+= adler32.c
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 Dinflate.c431 /* check function to use adler32() for zlib or crc32() for gzip */
434 (state->flags ? crc32(check, buf, len) : adler32(check, buf, len))
436 # define UPDATE(check, buf, len) adler32(check, buf, len)
682 strm->adler = state->check = adler32(0L, Z_NULL, 0);
824 strm->adler = state->check = adler32(0L, Z_NULL, 0);
1308 dictid = adler32(0L, Z_NULL, 0);
1309 dictid = adler32(dictid, dictionary, dictLength);
H A Dzconf.h29 # define adler32 z_adler32 macro
H A Ddeflate.c343 strm->adler = adler32(strm->adler, dictionary, dictLength);
418 adler32(0L, Z_NULL, 0);
756 /* Save the adler32 of the preset dictionary: */
761 strm->adler = adler32(0L, Z_NULL, 0);
1070 * Read a new buffer from the current input stream, update the adler32
1090 strm->adler = adler32(strm->adler, buf, len);
H A Dzlib.h102 uLong adler; /* adler32 value of the uncompressed data */
334 deflate() sets strm->adler to the adler32 checksum of all input read
479 below. At the end of the stream, inflate() checks that its computed adler32
489 gzip-wrapped deflate data, strm->adler32 is set to the CRC-32 of the output
549 with no zlib header or trailer, and will not compute an adler32 check value.
556 gzip stream is being written, strm->adler is a crc32 instead of an adler32.
617 Upon return of this function, strm->adler is set to the adler32 value
619 which dictionary has been used by the compressor. (The adler32 value
622 adler32 value is not computed and strm->adler is not set.
796 recommended that a check value such as an adler32 o
[all...]
/illumos-gate/usr/src/uts/common/zmod/
H A Dzconf.h93 #define adler32 z_adler32 macro
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 Dinflate.c382 /* check function to use adler32() for zlib or crc32() for gzip */
385 (state->flags ? crc32(check, buf, len) : adler32(check, buf, len))
387 # define UPDATE(check, buf, len) adler32(check, buf, len)
636 strm->adler = state->check = adler32(0L, Z_NULL, 0);
786 strm->adler = state->check = adler32(0L, Z_NULL, 0);
1212 id = adler32(0L, Z_NULL, 0);
1213 id = adler32(id, dictionary, dictLength);
H A Dzlib.h101 uLong adler; /* adler32 value of the uncompressed data */
311 deflate() sets strm->adler to the adler32 checksum of all input read
433 below), inflate sets strm->adler to the adler32 checksum of the dictionary
435 strm->adler to the adler32 checksum of all output produced so far (that is,
437 below. At the end of the stream, inflate() checks that its computed adler32
504 with no zlib header or trailer, and will not compute an adler32 check value.
511 gzip stream is being written, strm->adler is a crc32 instead of an adler32.
565 Upon return of this function, strm->adler is set to the adler32 value
567 which dictionary has been used by the compressor. (The adler32 value
570 adler32 valu
[all...]
H A Ddeflate.c338 strm->adler = adler32(strm->adler, dictionary, dictLength);
389 adler32(0L, Z_NULL, 0);
649 /* Save the adler32 of the preset dictionary: */
654 strm->adler = adler32(0L, Z_NULL, 0);
956 * Read a new buffer from the current input stream, update the adler32
975 strm->adler = adler32(strm->adler, strm->next_in, len);
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/pppdump/
H A Dzlib.h610 extern uLong adler32 OF((uLong adler, Bytef *buf, uInt len));
619 uLong adler = adler32(0L, Z_NULL, 0);
622 adler = adler32(adler, buffer, length);
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
/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/boot/sys/boot/userboot/libstand/
H A DMakefile96 SRCS+= adler32.c crc32.c libstand_zutil.h libstand_gzguts.h

Completed in 123 milliseconds