Home
last modified time | relevance | path

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

/dragonfly/sys/vfs/hammer2/zlib/
H A Dhammer2_zlib_trees.c920 ulg opt_lenb, static_lenb; /* opt_len and static_len in bytes */ local
948 opt_lenb = (s->opt_len+3+7)>>3;
952 opt_lenb, s->opt_len, static_lenb, s->static_len, stored_len,
955 if (static_lenb <= opt_lenb) opt_lenb = static_lenb;
959 opt_lenb = static_lenb = stored_len + 5; /* force a stored block */
965 if (stored_len+4 <= opt_lenb && buf != (char*)0) {
979 } else if (s->strategy == Z_FIXED || static_lenb == opt_lenb) {
/dragonfly/contrib/zlib-1.2/
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) {
/dragonfly/usr.sbin/makefs/hammer2/zlib/
H A Dhammer2_zlib_trees.c920 ulg opt_lenb, static_lenb; /* opt_len and static_len in bytes */ local
948 opt_lenb = (s->opt_len+3+7)>>3;
952 opt_lenb, s->opt_len, static_lenb, s->static_len, stored_len,
955 if (static_lenb <= opt_lenb) opt_lenb = static_lenb;
959 opt_lenb = static_lenb = stored_len + 5; /* force a stored block */
965 if (stored_len+4 <= opt_lenb && buf != (char*)0) {
979 } else if (s->strategy == Z_FIXED || static_lenb == opt_lenb) {
/dragonfly/sbin/hammer2/zlib/
H A Dhammer2_zlib_trees.c920 ulg opt_lenb, static_lenb; /* opt_len and static_len in bytes */ local
948 opt_lenb = (s->opt_len+3+7)>>3;
952 opt_lenb, s->opt_len, static_lenb, s->static_len, stored_len,
955 if (static_lenb <= opt_lenb) opt_lenb = static_lenb;
959 opt_lenb = static_lenb = stored_len + 5; /* force a stored block */
965 if (stored_len+4 <= opt_lenb && buf != (char*)0) {
979 } else if (s->strategy == Z_FIXED || static_lenb == opt_lenb) {
/dragonfly/sys/net/
H A Dzlib.c2702 ulg opt_lenb, static_lenb; /* opt_len and static_len in bytes */ local
2729 opt_lenb = (s->opt_len+3+7)>>3;
2733 opt_lenb, s->opt_len, static_lenb, s->static_len, stored_len,
2736 if (static_lenb <= opt_lenb) opt_lenb = static_lenb;
2740 opt_lenb = static_lenb = stored_len + 5; /* force a stored block */
2751 if (stored_len <= opt_lenb && eof && s->compressed_len==0L && seekable()) {
2765 if (stored_len+4 <= opt_lenb && buf != NULL) {
2779 } else if (static_lenb == opt_lenb) {