Lines Matching refs:stored_len
863 void ZLIB_INTERNAL _tr_stored_block(s, buf, stored_len, last) in _tr_stored_block() argument
866 ulg stored_len; /* length of input block */
871 put_short(s, (ush)stored_len);
872 put_short(s, (ush)~stored_len);
873 zmemcpy(s->pending_buf + s->pending, (Bytef *)buf, stored_len);
874 s->pending += stored_len;
877 s->compressed_len += (stored_len + 4) << 3;
879 s->bits_sent += stored_len<<3;
911 void ZLIB_INTERNAL _tr_flush_block(s, buf, stored_len, last) in _tr_flush_block() argument
914 ulg stored_len; /* length of input block */
949 opt_lenb, s->opt_len, static_lenb, s->static_len, stored_len,
956 opt_lenb = static_lenb = stored_len + 5; /* force a stored block */
962 if (stored_len+4 <= opt_lenb && buf != (char*)0) {
971 _tr_stored_block(s, buf, stored_len, last);