Lines Matching refs:adler
328 strm->adler = adler32(strm->adler, dictionary, dictLength);
375 strm->adler =
610 strm->adler = crc32(0L, Z_NULL, 0);
646 strm->adler = crc32(strm->adler, s->pending_buf,
675 putShortMSB(s, (uInt)(strm->adler >> 16));
676 putShortMSB(s, (uInt)(strm->adler & 0xffff));
678 strm->adler = adler32(0L, Z_NULL, 0);
689 strm->adler = crc32(strm->adler, s->pending_buf + beg,
700 strm->adler = crc32(strm->adler, s->pending_buf + beg,
718 strm->adler = crc32(strm->adler, s->pending_buf + beg,
731 strm->adler = crc32(strm->adler, s->pending_buf + beg,
749 strm->adler = crc32(strm->adler, s->pending_buf + beg,
762 strm->adler = crc32(strm->adler, s->pending_buf + beg,
775 put_byte(s, (Byte)(strm->adler & 0xff));
776 put_byte(s, (Byte)((strm->adler >> 8) & 0xff));
777 strm->adler = crc32(0L, Z_NULL, 0);
871 put_byte(s, (Byte)(strm->adler & 0xff));
872 put_byte(s, (Byte)((strm->adler >> 8) & 0xff));
873 put_byte(s, (Byte)((strm->adler >> 16) & 0xff));
874 put_byte(s, (Byte)((strm->adler >> 24) & 0xff));
883 putShortMSB(s, (uInt)(strm->adler >> 16));
884 putShortMSB(s, (uInt)(strm->adler & 0xffff));
1005 strm->adler = adler32(strm->adler, strm->next_in, len);
1009 strm->adler = crc32(strm->adler, strm->next_in, len);