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

/forgerock/web-agents-v4/zlib/
H A Dadler32.c18 #define DO1(buf,i) {adler += (buf)[i]; sum2 += adler;}
65 uLong ZEXPORT adler32(adler, buf, len)
66 uLong adler;
74 sum2 = (adler >> 16) & 0xffff;
75 adler &= 0xffff;
79 adler += buf[0];
80 if (adler >= BASE)
81 adler -= BASE;
82 sum2 += adler;
[all...]
H A Ddeflate.c343 strm->adler = adler32(strm->adler, dictionary, dictLength);
414 strm->adler =
693 strm->adler = crc32(0L, Z_NULL, 0);
729 strm->adler = crc32(strm->adler, s->pending_buf,
758 putShortMSB(s, (uInt)(strm->adler >> 16));
759 putShortMSB(s, (uInt)(strm->adler & 0xffff));
761 strm->adler = adler32(0L, Z_NULL, 0);
772 strm->adler
[all...]
H A Dinflate.c114 strm->adler = state->wrap & 1;
682 strm->adler = state->check = adler32(0L, Z_NULL, 0);
810 strm->adler = state->check = crc32(0L, Z_NULL, 0);
816 strm->adler = state->check = ZSWAP32(hold);
824 strm->adler = state->check = adler32(0L, Z_NULL, 0);
1181 strm->adler = state->check =
1244 strm->adler = state->check =
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...]

Completed in 39 milliseconds