Home
last modified time | relevance | path

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

/xnu-11417.121.6/libkern/zlib/
H A Dtrees.c928 _tr_stored_block(deflate_state *s, charf *buf, ulg stored_len, int eof) in _tr_stored_block() argument
933 s->compressed_len += (stored_len + 4) << 3; in _tr_stored_block()
935 copy_block(s, buf, (unsigned)stored_len, 1); /* with header */ in _tr_stored_block()
983 _tr_flush_block(deflate_state *s, charf *buf, ulg stored_len, int eof) argument
992 if (stored_len > 0 && s->strm->data_type == Z_UNKNOWN)
1017 opt_lenb, s->opt_len, static_lenb, s->static_len, stored_len,
1024 opt_lenb = static_lenb = stored_len + 5; /* force a stored block */
1030 if (stored_len+4 <= opt_lenb && buf != (char*)0) {
1039 _tr_stored_block(s, buf, stored_len, eof);
H A Ddeflate.h313 void _tr_flush_block OF((deflate_state *s, charf *buf, ulg stored_len,
316 void _tr_stored_block OF((deflate_state *s, charf *buf, ulg stored_len,