Lines Matching refs:stored_len
795 ulg stored_len, /* length of input block */ in zlib_tr_stored_block() argument
801 s->compressed_len += (stored_len + 4) << 3; in zlib_tr_stored_block()
803 copy_block(s, buf, (unsigned)stored_len, 1); /* with header */ in zlib_tr_stored_block()
859 ulg stored_len, /* length of input block */ argument
894 opt_lenb, s->opt_len, static_lenb, s->static_len, stored_len,
901 opt_lenb = static_lenb = stored_len + 5; /* force a stored block */
912 if (stored_len <= opt_lenb && eof && s->compressed_len==0L && seekable()) {
917 copy_block(s, buf, (unsigned)stored_len, 0); /* without header */
918 s->compressed_len = stored_len << 3;
926 if (stored_len+4 <= opt_lenb && buf != (char*)0) {
935 zlib_tr_stored_block(s, buf, stored_len, eof);