Lines Matching refs:adler
396 strm->adler = adler32(strm->adler, dictionary, dictLength);
492 strm->adler =
758 strm->adler = crc32(strm->adler, s->pending_buf + (beg), \
835 putShortMSB(s, (uInt)(strm->adler >> 16));
836 putShortMSB(s, (uInt)(strm->adler & 0xffff));
838 strm->adler = adler32(0L, Z_NULL, 0);
851 strm->adler = crc32(0L, Z_NULL, 0);
894 strm->adler = crc32(strm->adler, s->pending_buf,
979 put_byte(s, (Byte)(strm->adler & 0xff));
980 put_byte(s, (Byte)((strm->adler >> 8) & 0xff));
981 strm->adler = crc32(0L, Z_NULL, 0);
1052 put_byte(s, (Byte)(strm->adler & 0xff));
1053 put_byte(s, (Byte)((strm->adler >> 8) & 0xff));
1054 put_byte(s, (Byte)((strm->adler >> 16) & 0xff));
1055 put_byte(s, (Byte)((strm->adler >> 24) & 0xff));
1064 putShortMSB(s, (uInt)(strm->adler >> 16));
1065 putShortMSB(s, (uInt)(strm->adler & 0xffff));
1178 strm->adler = adler32(strm->adler, buf, len);
1182 strm->adler = crc32(strm->adler, buf, len);