Lines Matching defs:stored_len
859 ulg stored_len, int last) {
862 put_short(s, (ush)stored_len);
863 put_short(s, (ush)~stored_len);
864 if (stored_len)
865 zmemcpy(s->pending_buf + s->pending, (Bytef *)buf, stored_len);
866 s->pending += stored_len;
869 s->compressed_len += (stored_len + 4) << 3;
871 s->bits_sent += stored_len << 3;
997 ulg stored_len, int last) {
1030 opt_lenb, s->opt_len, static_lenb, s->static_len, stored_len,
1040 opt_lenb = static_lenb = stored_len + 5; /* force a stored block */
1046 if (stored_len + 4 <= opt_lenb && buf != (char*)0) {
1055 _tr_stored_block(s, buf, stored_len, last);