Searched refs:static_lenb (Results 1 – 3 of 3) sorted by relevance
/illumos-gate/usr/src/contrib/zlib/ |
H A D | trees.c | 918 ulg opt_lenb, static_lenb; /* opt_len and static_len in bytes */ local 947 static_lenb = (s->static_len+3+7)>>3; 950 opt_lenb, s->opt_len, static_lenb, s->static_len, stored_len, 953 if (static_lenb <= opt_lenb) opt_lenb = static_lenb; 957 opt_lenb = static_lenb = stored_len + 5; /* force a stored block */ 975 } else if (static_lenb >= 0) { /* force static trees */ 977 } else if (s->strategy == Z_FIXED || static_lenb == opt_lenb) {
|
/illumos-gate/usr/src/uts/common/io/ppp/spppcomp/ |
H A D | zlib.c | 3161 ulg opt_lenb, static_lenb; /* opt_len and static_len in bytes */ local 3197 static_lenb = (s->static_len+3+7)>>3; 3201 opt_lenb, s->opt_len, static_lenb, s->static_len, 3204 if (static_lenb <= opt_lenb) opt_lenb = static_lenb; 3209 opt_lenb = static_lenb = stored_len + 5; 3258 #define FRC_STAT_COND static_lenb >= 0 /* force static trees */ 3260 #define FRC_STAT_COND static_lenb == opt_lenb
|
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/pppdump/ |
H A D | zlib.c | 2287 ulg opt_lenb, static_lenb; /* opt_len and static_len in bytes */ local 2315 static_lenb = (s->static_len+3+7)>>3; 2318 opt_lenb, s->opt_len, static_lenb, s->static_len, stored_len, 2321 if (static_lenb <= opt_lenb) opt_lenb = static_lenb; 2371 if (static_lenb >= 0) /* force static trees */ 2373 if (static_lenb == opt_lenb)
|