Lines Matching refs:adler
342 strm->adler = adler32(strm->adler, dictionary, dictLength);
413 strm->adler =
692 strm->adler = crc32(0L, Z_NULL, 0);
728 strm->adler = crc32(strm->adler, s->pending_buf,
757 putShortMSB(s, (uInt)(strm->adler >> 16));
758 putShortMSB(s, (uInt)(strm->adler & 0xffff));
760 strm->adler = adler32(0L, Z_NULL, 0);
771 strm->adler = crc32(strm->adler, s->pending_buf + beg,
782 strm->adler = crc32(strm->adler, s->pending_buf + beg,
800 strm->adler = crc32(strm->adler, s->pending_buf + beg,
813 strm->adler = crc32(strm->adler, s->pending_buf + beg,
831 strm->adler = crc32(strm->adler, s->pending_buf + beg,
844 strm->adler = crc32(strm->adler, s->pending_buf + beg,
857 put_byte(s, (Byte)(strm->adler & 0xff));
858 put_byte(s, (Byte)((strm->adler >> 8) & 0xff));
859 strm->adler = crc32(0L, Z_NULL, 0);
954 put_byte(s, (Byte)(strm->adler & 0xff));
955 put_byte(s, (Byte)((strm->adler >> 8) & 0xff));
956 put_byte(s, (Byte)((strm->adler >> 16) & 0xff));
957 put_byte(s, (Byte)((strm->adler >> 24) & 0xff));
966 putShortMSB(s, (uInt)(strm->adler >> 16));
967 putShortMSB(s, (uInt)(strm->adler & 0xffff));
1089 strm->adler = adler32(strm->adler, buf, len);
1093 strm->adler = crc32(strm->adler, buf, len);