Lines Matching refs:adler
230 strm->adler = adler32(strm->adler, buf, len);
234 strm->adler = crc32(strm->adler, buf, len);
571 strm->adler = adler32(strm->adler, dictionary, dictLength);
662 strm->adler =
949 strm->adler = crc32(strm->adler, s->pending_buf + (beg), \
1025 putShortMSB(s, (uInt)(strm->adler >> 16));
1026 putShortMSB(s, (uInt)(strm->adler & 0xffff));
1028 strm->adler = adler32(0L, Z_NULL, 0);
1041 strm->adler = crc32(0L, Z_NULL, 0);
1084 strm->adler = crc32(strm->adler, s->pending_buf,
1169 put_byte(s, (Byte)(strm->adler & 0xff));
1170 put_byte(s, (Byte)((strm->adler >> 8) & 0xff));
1171 strm->adler = crc32(0L, Z_NULL, 0);
1242 put_byte(s, (Byte)(strm->adler & 0xff));
1243 put_byte(s, (Byte)((strm->adler >> 8) & 0xff));
1244 put_byte(s, (Byte)((strm->adler >> 16) & 0xff));
1245 put_byte(s, (Byte)((strm->adler >> 24) & 0xff));
1254 putShortMSB(s, (uInt)(strm->adler >> 16));
1255 putShortMSB(s, (uInt)(strm->adler & 0xffff));