Lines Matching refs:adler
228 strm->adler = adler32(strm->adler, buf, len); in read_buf()
232 strm->adler = crc32(strm->adler, buf, len); in read_buf()
567 strm->adler = adler32(strm->adler, dictionary, dictLength); in deflateSetDictionary()
658 strm->adler = in deflateResetKeep()
941 strm->adler = crc32(strm->adler, s->pending_buf + (beg), \
1017 putShortMSB(s, (uInt)(strm->adler >> 16)); in deflate()
1018 putShortMSB(s, (uInt)(strm->adler & 0xffff)); in deflate()
1020 strm->adler = adler32(0L, Z_NULL, 0); in deflate()
1033 strm->adler = crc32(0L, Z_NULL, 0); in deflate()
1076 strm->adler = crc32(strm->adler, s->pending_buf, in deflate()
1161 put_byte(s, (Byte)(strm->adler & 0xff)); in deflate()
1162 put_byte(s, (Byte)((strm->adler >> 8) & 0xff)); in deflate()
1163 strm->adler = crc32(0L, Z_NULL, 0); in deflate()
1234 put_byte(s, (Byte)(strm->adler & 0xff)); in deflate()
1235 put_byte(s, (Byte)((strm->adler >> 8) & 0xff)); in deflate()
1236 put_byte(s, (Byte)((strm->adler >> 16) & 0xff)); in deflate()
1237 put_byte(s, (Byte)((strm->adler >> 24) & 0xff)); in deflate()
1246 putShortMSB(s, (uInt)(strm->adler >> 16)); in deflate()
1247 putShortMSB(s, (uInt)(strm->adler & 0xffff)); in deflate()