Home
last modified time | relevance | path

Searched refs:stored_len (Results 1 – 5 of 5) sorted by relevance

/illumos-gate/usr/src/contrib/zlib/
H A Dtrees.c863 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 if (stored_len)
874 zmemcpy(s->pending_buf + s->pending, (Bytef *)buf, stored_len);
875 s->pending += stored_len;
878 s->compressed_len += (stored_len + 4) << 3;
880 s->bits_sent += stored_len<<3;
912 void ZLIB_INTERNAL _tr_flush_block(s, buf, stored_len, last) in _tr_flush_block() argument
[all …]
H A Ddeflate.h295 ulg stored_len, int last));
299 ulg stored_len, int last));
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/pppdump/
H A Dzlib.c410 local ulg ct_flush_block OF((deflate_state *s, charf *buf, ulg stored_len,
413 local void ct_stored_block OF((deflate_state *s, charf *buf, ulg stored_len,
2224 local void ct_stored_block(s, buf, stored_len, eof) in ct_stored_block() argument
2227 ulg stored_len; /* length of input block */
2232 s->compressed_len += (stored_len + 4) << 3;
2234 copy_block(s, buf, (unsigned)stored_len, 1); /* with header */
2281 local ulg ct_flush_block(s, buf, stored_len, flush) in ct_flush_block() argument
2284 ulg stored_len; /* length of input block */
2318 opt_lenb, s->opt_len, static_lenb, s->static_len, stored_len,
2331 if (stored_len <= opt_lenb && eof && s->compressed_len==0L && seekable())
[all …]
/illumos-gate/usr/src/uts/common/io/ppp/spppcomp/
H A Dzlib.c584 void _tr_flush_block OF((deflate_state *s, charf *buf, ulg stored_len,
587 void _tr_stored_block OF((deflate_state *s, charf *buf, ulg stored_len,
3086 _tr_stored_block(s, buf, stored_len, eof) in _tr_stored_block() argument
3089 ulg stored_len; /* length of input block */
3094 s->compressed_len += (stored_len + 4) << 3; /* PPP */
3096 copy_block(s, buf, (unsigned)stored_len, 1); /* with header */
3155 _tr_flush_block(s, buf, stored_len, eof) in _tr_flush_block() argument
3158 ulg stored_len; /* length of input block */
3202 stored_len, s->last_lit));
3209 opt_lenb = static_lenb = stored_len + 5;
[all …]
/illumos-gate/usr/src/contrib/ast/src/cmd/INIT/
H A Dratz.c1494 void _tr_flush_block OF((deflate_state *s, charf *buf, ulg stored_len,
1497 void _tr_stored_block OF((deflate_state *s, charf *buf, ulg stored_len,