Lines Matching refs:adler
343 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 = crc32(strm->adler, s->pending_buf + beg,
783 strm->adler = crc32(strm->adler, s->pending_buf + beg,
801 strm->adler = crc32(strm->adler, s->pending_buf + beg,
814 strm->adler = crc32(strm->adler, s->pending_buf + beg,
832 strm->adler = crc32(strm->adler, s->pending_buf + beg,
845 strm->adler = crc32(strm->adler, s->pending_buf + beg,
858 put_byte(s, (Byte)(strm->adler & 0xff));
859 put_byte(s, (Byte)((strm->adler >> 8) & 0xff));
860 strm->adler = crc32(0L, Z_NULL, 0);
955 put_byte(s, (Byte)(strm->adler & 0xff));
956 put_byte(s, (Byte)((strm->adler >> 8) & 0xff));
957 put_byte(s, (Byte)((strm->adler >> 16) & 0xff));
958 put_byte(s, (Byte)((strm->adler >> 24) & 0xff));
967 putShortMSB(s, (uInt)(strm->adler >> 16));
968 putShortMSB(s, (uInt)(strm->adler & 0xffff));
1090 strm->adler = adler32(strm->adler, buf, len);
1094 strm->adler = crc32(strm->adler, buf, len);