Searched refs:stored_len (Results 1 – 4 of 4) sorted by relevance
/openbmc/linux/lib/zlib_deflate/ |
H A D | deftree.c | 741 ulg stored_len, /* length of input block */ in zlib_tr_stored_block() argument 747 s->compressed_len += (stored_len + 4) << 3; in zlib_tr_stored_block() 749 copy_block(s, buf, (unsigned)stored_len, 1); /* with header */ in zlib_tr_stored_block() 805 ulg stored_len, /* length of input block */ argument 840 opt_lenb, s->opt_len, static_lenb, s->static_len, stored_len, 847 opt_lenb = static_lenb = stored_len + 5; /* force a stored block */ 858 if (stored_len <= opt_lenb && eof && s->compressed_len==0L && seekable()) { 863 copy_block(s, buf, (unsigned)stored_len, 0); /* without header */ 864 s->compressed_len = stored_len << 3; 872 if (stored_len+4 <= opt_lenb && buf != (char*)0) { [all …]
|
H A D | defutil.h | 276 ulg zlib_tr_flush_block (deflate_state *s, char *buf, ulg stored_len, 279 void zlib_tr_stored_block (deflate_state *s, char *buf, ulg stored_len,
|
/openbmc/u-boot/lib/zlib/ |
H A D | trees.c | 871 void ZLIB_INTERNAL _tr_stored_block(s, buf, stored_len, last) in _tr_stored_block() argument 874 ulg stored_len; /* length of input block */ 880 s->compressed_len += (stored_len + 4) << 3; 882 copy_block(s, buf, (unsigned)stored_len, 1); /* with header */ 925 void ZLIB_INTERNAL _tr_flush_block(s, buf, stored_len, last) in _tr_flush_block() argument 928 ulg stored_len; /* length of input block */ 963 opt_lenb, s->opt_len, static_lenb, s->static_len, stored_len, 970 opt_lenb = static_lenb = stored_len + 5; /* force a stored block */ 976 if (stored_len+4 <= opt_lenb && buf != (char*)0) { 985 _tr_stored_block(s, buf, stored_len, last);
|
H A D | deflate.h | 296 ulg stored_len, int last)); 299 ulg stored_len, int last));
|