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

/freebsd-11-stable/sys/cddl/contrib/opensolaris/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) {
/freebsd-11-stable/sys/contrib/zlib/
H A Dtrees.c917 ulg opt_lenb, static_lenb; /* opt_len and static_len in bytes */ local
945 opt_lenb = (s->opt_len+3+7)>>3;
949 opt_lenb, s->opt_len, static_lenb, s->static_len, stored_len,
952 if (static_lenb <= opt_lenb) opt_lenb = static_lenb;
956 opt_lenb = static_lenb = stored_len + 5; /* force a stored block */
962 if (stored_len+4 <= opt_lenb && buf != (char*)0) {
976 } else if (s->strategy == Z_FIXED || static_lenb == opt_lenb) {
/freebsd-11-stable/sys/libkern/
H A Dzlib.c2698 ulg opt_lenb, static_lenb; /* opt_len and static_len in bytes */ local
2725 opt_lenb = (s->opt_len+3+7)>>3;
2729 opt_lenb, s->opt_len, static_lenb, s->static_len, stored_len,
2732 if (static_lenb <= opt_lenb) opt_lenb = static_lenb;
2736 opt_lenb = static_lenb = stored_len + 5; /* force a stored block */
2747 if (stored_len <= opt_lenb && eof && s->compressed_len==0L && seekable()) {
2761 if (stored_len+4 <= opt_lenb && buf != (char*)0) {
2775 } else if (static_lenb == opt_lenb) {

Completed in 114 milliseconds