Lines Matching refs:adler
332 strm->adler = adler32(strm->adler, dictionary, dictLength);
381 strm->adler =
616 strm->adler = crc32(0L, Z_NULL, 0);
652 strm->adler = crc32(strm->adler, s->pending_buf,
681 putShortMSB(s, (uInt)(strm->adler >> 16));
682 putShortMSB(s, (uInt)(strm->adler & 0xffff));
684 strm->adler = adler32(0L, Z_NULL, 0);
695 strm->adler = crc32(strm->adler, s->pending_buf + beg,
706 strm->adler = crc32(strm->adler, s->pending_buf + beg,
724 strm->adler = crc32(strm->adler, s->pending_buf + beg,
737 strm->adler = crc32(strm->adler, s->pending_buf + beg,
755 strm->adler = crc32(strm->adler, s->pending_buf + beg,
768 strm->adler = crc32(strm->adler, s->pending_buf + beg,
781 put_byte(s, (Byte)(strm->adler & 0xff));
782 put_byte(s, (Byte)((strm->adler >> 8) & 0xff));
783 strm->adler = crc32(0L, Z_NULL, 0);
894 put_byte(s, (Byte)(strm->adler & 0xff));
895 put_byte(s, (Byte)((strm->adler >> 8) & 0xff));
896 put_byte(s, (Byte)((strm->adler >> 16) & 0xff));
897 put_byte(s, (Byte)((strm->adler >> 24) & 0xff));
906 putShortMSB(s, (uInt)(strm->adler >> 16));
907 putShortMSB(s, (uInt)(strm->adler & 0xffff));
1029 strm->adler = adler32(strm->adler, strm->next_in, len);
1033 strm->adler = crc32(strm->adler, strm->next_in, len);