Home
last modified time | relevance | path

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

/openbmc/linux/lib/zlib_deflate/
H A Ddeftree.c809 ulg opt_lenb, static_lenb; /* opt_len and static_len in bytes */ local
836 opt_lenb = (s->opt_len+3+7)>>3;
840 opt_lenb, s->opt_len, static_lenb, s->static_len, stored_len,
843 if (static_lenb <= opt_lenb) opt_lenb = static_lenb;
847 opt_lenb = static_lenb = stored_len + 5; /* force a stored block */
858 if (stored_len <= opt_lenb && eof && s->compressed_len==0L && seekable()) {
872 if (stored_len+4 <= opt_lenb && buf != (char*)0) {
886 } else if (static_lenb == opt_lenb) {
/openbmc/u-boot/lib/zlib/
H A Dtrees.c931 ulg opt_lenb, static_lenb; /* opt_len and static_len in bytes */ local
959 opt_lenb = (s->opt_len+3+7)>>3;
963 opt_lenb, s->opt_len, static_lenb, s->static_len, stored_len,
966 if (static_lenb <= opt_lenb) opt_lenb = static_lenb;
970 opt_lenb = static_lenb = stored_len + 5; /* force a stored block */
976 if (stored_len+4 <= opt_lenb && buf != (char*)0) {
990 } else if (s->strategy == Z_FIXED || static_lenb == opt_lenb) {