Home
last modified time | relevance | path

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

/linux-3.4.99/lib/zlib_deflate/ !
Ddeftree.c795 ulg stored_len, /* length of input block */ in zlib_tr_stored_block() argument
801 s->compressed_len += (stored_len + 4) << 3; in zlib_tr_stored_block()
803 copy_block(s, buf, (unsigned)stored_len, 1); /* with header */ in zlib_tr_stored_block()
859 ulg stored_len, /* length of input block */ argument
894 opt_lenb, s->opt_len, static_lenb, s->static_len, stored_len,
901 opt_lenb = static_lenb = stored_len + 5; /* force a stored block */
912 if (stored_len <= opt_lenb && eof && s->compressed_len==0L && seekable()) {
917 copy_block(s, buf, (unsigned)stored_len, 0); /* without header */
918 s->compressed_len = stored_len << 3;
926 if (stored_len+4 <= opt_lenb && buf != (char*)0) {
[all …]
Ddefutil.h278 ulg zlib_tr_flush_block (deflate_state *s, char *buf, ulg stored_len,
281 void zlib_tr_stored_block (deflate_state *s, char *buf, ulg stored_len,