Lines Matching refs:stored_len
741 ulg stored_len, /* length of input block */ in zlib_tr_stored_block() argument
747 s->compressed_len += (stored_len + 4) << 3; in zlib_tr_stored_block()
749 copy_block(s, buf, (unsigned)stored_len, 1); /* with header */ in zlib_tr_stored_block()
805 ulg stored_len, /* length of input block */ argument
840 opt_lenb, s->opt_len, static_lenb, s->static_len, stored_len,
847 opt_lenb = static_lenb = stored_len + 5; /* force a stored block */
858 if (stored_len <= opt_lenb && eof && s->compressed_len==0L && seekable()) {
863 copy_block(s, buf, (unsigned)stored_len, 0); /* without header */
864 s->compressed_len = stored_len << 3;
872 if (stored_len+4 <= opt_lenb && buf != (char*)0) {
881 zlib_tr_stored_block(s, buf, stored_len, eof);