Lines Matching refs:adler
328 strm->adler = adler32(strm->adler, dictionary, dictLength);
375 strm->adler =
608 strm->adler = crc32(0L, Z_NULL, 0);
644 strm->adler = crc32(strm->adler, s->pending_buf,
673 putShortMSB(s, (uInt)(strm->adler >> 16));
674 putShortMSB(s, (uInt)(strm->adler & 0xffff));
676 strm->adler = adler32(0L, Z_NULL, 0);
687 strm->adler = crc32(strm->adler, s->pending_buf + beg,
698 strm->adler = crc32(strm->adler, s->pending_buf + beg,
716 strm->adler = crc32(strm->adler, s->pending_buf + beg,
729 strm->adler = crc32(strm->adler, s->pending_buf + beg,
747 strm->adler = crc32(strm->adler, s->pending_buf + beg,
760 strm->adler = crc32(strm->adler, s->pending_buf + beg,
773 put_byte(s, (Byte)(strm->adler & 0xff));
774 put_byte(s, (Byte)((strm->adler >> 8) & 0xff));
775 strm->adler = crc32(0L, Z_NULL, 0);
869 put_byte(s, (Byte)(strm->adler & 0xff));
870 put_byte(s, (Byte)((strm->adler >> 8) & 0xff));
871 put_byte(s, (Byte)((strm->adler >> 16) & 0xff));
872 put_byte(s, (Byte)((strm->adler >> 24) & 0xff));
881 putShortMSB(s, (uInt)(strm->adler >> 16));
882 putShortMSB(s, (uInt)(strm->adler & 0xffff));
1003 strm->adler = adler32(strm->adler, strm->next_in, len);
1007 strm->adler = crc32(strm->adler, strm->next_in, len);