Lines Matching defs:stored_len
883 ulg stored_len, int last) {
886 put_short(s, (ush)stored_len);
887 put_short(s, (ush)~stored_len);
888 if (stored_len)
889 zmemcpy(s->pending_buf + s->pending, (Bytef *)buf, stored_len);
890 s->pending += stored_len;
893 s->compressed_len += (stored_len + 4) << 3;
895 s->bits_sent += stored_len << 3;
1022 ulg stored_len, int last) {
1055 opt_lenb, s->opt_len, static_lenb, s->static_len, stored_len,
1065 opt_lenb = static_lenb = stored_len + 5; /* force a stored block */
1071 if (stored_len + 4 <= opt_lenb && buf != (char*)0) {
1080 _tr_stored_block(s, buf, stored_len, last);