Searched defs:adler (Results 1 - 4 of 4) sorted by relevance

/illumos-gate/usr/src/uts/common/zmod/
H A Dzlib.h101 uLong adler; /* adler32 value of the uncompressed data */ member in struct:z_stream_s
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,
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
570 adler32 value is not computed and strm->adler is not set.
727 return a Z_DATA_ERROR). If a gzip stream is being decoded, strm->adler is
1262 ZEXTERN uLong ZEXPORT adler32 OF((uLong adler, const Bytef *buf, uInt len));
1270 uLong adler
[all...]
/illumos-gate/usr/src/uts/common/io/ppp/spppcomp/
H A Dzlib.h423 uLong adler; /* adler32 value of the uncompressed data */ member in struct:z_stream_s
717 * compression block. In the Z_NEED_DICT case, strm->adler is set to
821 * Upon return of this function, strm->adler is set to the Adler32
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);
1147 * if (adler != original_adler) error();
/illumos-gate/usr/src/boot/lib/libz/
H A Dzlib.h102 uLong adler; /* adler32 value of the uncompressed data */ member in struct:z_stream_s
334 deflate() sets strm->adler to the adler32 checksum of all input read
475 below), inflate sets strm->adler to the Adler-32 checksum of the dictionary
477 strm->adler to the Adler-32 checksum of all output produced so far (that is,
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
622 adler32 value is not computed and strm->adler is not set.
804 return a Z_DATA_ERROR). If a gzip stream is being decoded, strm->adler is a
1569 ZEXTERN uLong ZEXPORT adler32 OF((uLong adler, const Bytef *buf, uInt len));
1580 uLong adler
[all...]
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/pppdump/
H A Dzlib.c222 uLong adler; /* adler32 of uncompressed data */ member in struct:deflate_state
684 s->adler = 1;
843 putShortMSB(state, (uInt)(state->adler >> 16));
844 putShortMSB(state, (uInt)(state->adler & 0xffff));
890 state->adler = adler32(state->adler, strm->next_in, len);
4589 uLong adler32(adler, buf, len)
4590 uLong adler;
4594 unsigned long s1 = adler & 0xffff;
4595 unsigned long s2 = (adler >> 1
[all...]

Completed in 103 milliseconds