Lines Matching refs:adler
365 strm->adler = adler32(strm->adler, dictionary, dictLength);
412 strm->adler =
659 strm->adler = crc32(0L, Z_NULL, 0);
695 strm->adler = crc32(strm->adler, s->pending_buf,
724 putShortMSB(s, (uInt)(strm->adler >> 16));
725 putShortMSB(s, (uInt)(strm->adler & 0xffff));
727 strm->adler = adler32(0L, Z_NULL, 0);
738 strm->adler = crc32(strm->adler, s->pending_buf + beg,
749 strm->adler = crc32(strm->adler, s->pending_buf + beg,
767 strm->adler = crc32(strm->adler, s->pending_buf + beg,
780 strm->adler = crc32(strm->adler, s->pending_buf + beg,
798 strm->adler = crc32(strm->adler, s->pending_buf + beg,
811 strm->adler = crc32(strm->adler, s->pending_buf + beg,
824 put_byte(s, (Byte)(strm->adler & 0xff));
825 put_byte(s, (Byte)((strm->adler >> 8) & 0xff));
826 strm->adler = crc32(0L, Z_NULL, 0);
920 put_byte(s, (Byte)(strm->adler & 0xff));
921 put_byte(s, (Byte)((strm->adler >> 8) & 0xff));
922 put_byte(s, (Byte)((strm->adler >> 16) & 0xff));
923 put_byte(s, (Byte)((strm->adler >> 24) & 0xff));
932 putShortMSB(s, (uInt)(strm->adler >> 16));
933 putShortMSB(s, (uInt)(strm->adler & 0xffff));
1051 strm->adler = adler32(strm->adler, strm->next_in, len);
1055 strm->adler = crc32(strm->adler, strm->next_in, len);