Searched refs:opt_lenb (Results 1 - 4 of 4) sorted by relevance

/illumos-gate/usr/src/uts/common/zmod/
H A Dtrees.c927 ulg opt_lenb, static_lenb; /* opt_len and static_len in bytes */ local
955 opt_lenb = (s->opt_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 */
972 if (stored_len+4 <= opt_lenb && buf != (char*)0) {
986 } else if (s->strategy == Z_FIXED || static_lenb == opt_lenb) {
/illumos-gate/usr/src/boot/lib/libz/
H A Dtrees.c913 ulg opt_lenb, static_lenb; /* opt_len and static_len in bytes */ local
941 opt_lenb = (s->opt_len+3+7)>>3;
945 opt_lenb, s->opt_len, static_lenb, s->static_len, stored_len,
948 if (static_lenb <= opt_lenb) opt_lenb = static_lenb;
952 opt_lenb = static_lenb = stored_len + 5; /* force a stored block */
958 if (stored_len+4 <= opt_lenb && buf != (char*)0) {
972 } else if (s->strategy == Z_FIXED || static_lenb == opt_lenb) {
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/pppdump/
H A Dzlib.c2287 ulg opt_lenb, static_lenb; /* opt_len and static_len in bytes */ local
2314 opt_lenb = (s->opt_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;
2331 if (stored_len <= opt_lenb && eof && s->compressed_len==0L && seekable())
2349 && opt_lenb > stored_len - s->minCompr) {
2357 if (stored_len+4 <= opt_lenb && buf != (char*)0)
2373 if (static_lenb == opt_lenb)
/illumos-gate/usr/src/uts/common/io/ppp/spppcomp/
H A Dzlib.c3163 ulg opt_lenb, static_lenb; /* opt_len and static_len in bytes */ local
3198 opt_lenb = (s->opt_len+3+7)>>3;
3203 opt_lenb, s->opt_len, static_lenb, s->static_len,
3206 if (static_lenb <= opt_lenb) opt_lenb = static_lenb;
3211 opt_lenb = static_lenb = stored_len + 5;
3223 #define FRC_STR_COND stored_len <= opt_lenb && eof && \
3245 #define FRC_STR_COND stored_len+4 <= opt_lenb && buf != (char *)0
3262 #define FRC_STAT_COND static_lenb == opt_lenb

Completed in 80 milliseconds