Lines Matching defs:stored_len
863 void ZLIB_INTERNAL _tr_stored_block(s, buf, stored_len, last)
866 ulg stored_len; /* length of input block */
871 put_short(s, (ush)stored_len);
872 put_short(s, (ush)~stored_len);
873 if (stored_len)
874 zmemcpy(s->pending_buf + s->pending, (Bytef *)buf, stored_len);
875 s->pending += stored_len;
878 s->compressed_len += (stored_len + 4) << 3;
880 s->bits_sent += stored_len<<3;
912 void ZLIB_INTERNAL _tr_flush_block(s, buf, stored_len, last)
915 ulg stored_len; /* length of input block */
950 opt_lenb, s->opt_len, static_lenb, s->static_len, stored_len,
957 opt_lenb = static_lenb = stored_len + 5; /* force a stored block */
963 if (stored_len+4 <= opt_lenb && buf != (char*)0) {
972 _tr_stored_block(s, buf, stored_len, last);