Home
last modified time | relevance | path

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

/linux-2.4.37.9/lib/zlib_deflate/
Ddeftree.c783 void zlib_tr_stored_block(s, buf, stored_len, eof) in zlib_tr_stored_block() argument
786 ulg stored_len; /* length of input block */
791 s->compressed_len += (stored_len + 4) << 3;
793 copy_block(s, buf, (unsigned)stored_len, 1); /* with header */
844 ulg zlib_tr_flush_block(s, buf, stored_len, eof) in zlib_tr_flush_block() argument
847 ulg stored_len; /* length of input block */
881 opt_lenb, s->opt_len, static_lenb, s->static_len, stored_len,
888 opt_lenb = static_lenb = stored_len + 5; /* force a stored block */
899 if (stored_len <= opt_lenb && eof && s->compressed_len==0L && seekable()) {
904 copy_block(s, buf, (unsigned)stored_len, 0); /* without header */
[all …]
Ddefutil.h270 ulg zlib_tr_flush_block OF((deflate_state *s, charf *buf, ulg stored_len,
273 void zlib_tr_stored_block OF((deflate_state *s, charf *buf, ulg stored_len,