Lines Matching refs:adler
231 strm->adler = adler32(strm->adler, buf, len);
609 strm->adler = adler32(strm->adler, dictionary, dictLength);
696 strm->adler =
979 strm->adler = crc32(strm->adler, s->pending_buf + (beg), \
1055 putShortMSB(s, (uInt)(strm->adler >> 16));
1056 putShortMSB(s, (uInt)(strm->adler & 0xffff));
1058 strm->adler = adler32(0L, Z_NULL, 0);
1114 strm->adler = crc32(strm->adler, s->pending_buf,
1199 put_byte(s, (Byte)(strm->adler & 0xff));
1200 put_byte(s, (Byte)((strm->adler >> 8) & 0xff));
1201 strm->adler = crc32(0L, Z_NULL, 0);
1273 put_byte(s, (Byte)(strm->adler & 0xff));
1274 put_byte(s, (Byte)((strm->adler >> 8) & 0xff));
1275 put_byte(s, (Byte)((strm->adler >> 16) & 0xff));
1276 put_byte(s, (Byte)((strm->adler >> 24) & 0xff));
1285 putShortMSB(s, (uInt)(strm->adler >> 16));
1286 putShortMSB(s, (uInt)(strm->adler & 0xffff));