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.c866 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)
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
915 ulg stored_len; /* length of input block */
963 if (stored_len+4 <= opt_lenb && buf != (char*)0) {
[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.c2224 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 */
2337 copy_block(buf, (unsigned)stored_len, 0); /* without header */
2338 s->compressed_len = stored_len << 3;
2349 && opt_lenb > stored_len - s->minCompr) {
2357 if (stored_len+4 <= opt_lenb && buf != (char*)0)
[all …]
/illumos-gate/usr/src/uts/common/io/ppp/spppcomp/
H A Dzlib.c3086 _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 */
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;
3221 #define FRC_STR_COND stored_len <= opt_lenb && eof && \
3233 copy_block(s, buf, (unsigned)stored_len, 0);
3234 s->compressed_len = stored_len << 3;
[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,