Home
last modified time | relevance | path

Searched refs:static_lenb (Results 1 – 3 of 3) sorted by relevance

/netbsd/src/external/cddl/osnet/dist/uts/common/zmod/
Dtrees.c927 ulg opt_lenb, static_lenb; /* opt_len and static_len in bytes */ local
956 static_lenb = (s->static_len+3+7)>>3;
959 opt_lenb, s->opt_len, static_lenb, s->static_len, stored_len,
962 if (static_lenb <= opt_lenb) opt_lenb = static_lenb;
966 opt_lenb = static_lenb = stored_len + 5; /* force a stored block */
984 } else if (static_lenb >= 0) { /* force static trees */
986 } else if (s->strategy == Z_FIXED || static_lenb == opt_lenb) {
/netbsd/src/common/dist/zlib/
Dtrees.c999 ulg opt_lenb, static_lenb; /* opt_len and static_len in bytes */ local
1028 static_lenb = (s->static_len + 3 + 7) >> 3;
1031 opt_lenb, s->opt_len, static_lenb, s->static_len, stored_len,
1035 if (static_lenb <= opt_lenb || s->strategy == Z_FIXED)
1037 opt_lenb = static_lenb;
1041 opt_lenb = static_lenb = stored_len + 5; /* force a stored block */
1058 } else if (static_lenb == opt_lenb) {
/netbsd/src/sys/net/
Dzlib.c3022 ulg opt_lenb, static_lenb; /* opt_len and static_len in bytes */ in _tr_flush_block() local
3050 static_lenb = (s->static_len+3+7)>>3; in _tr_flush_block()
3053 opt_lenb, s->opt_len, static_lenb, s->static_len, stored_len, in _tr_flush_block()
3056 if (static_lenb <= opt_lenb) opt_lenb = static_lenb; in _tr_flush_block()
3060 opt_lenb = static_lenb = stored_len + 5; /* force a stored block */ in _tr_flush_block()
3078 } else if (static_lenb >= 0) { /* force static trees */ in _tr_flush_block()
3080 } else if (static_lenb == opt_lenb) { in _tr_flush_block()