/src/common/dist/zlib/ |
trees.c | 999 ulg opt_lenb, static_lenb; /* opt_len and static_len in bytes */ local in function:_tr_flush_block 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) {
|
trees.c | 999 ulg opt_lenb, static_lenb; /* opt_len and static_len in bytes */ local in function:_tr_flush_block 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) {
|
/src/sys/net/ |
zlib.c | 3022 ulg opt_lenb, static_lenb; /* opt_len and static_len in bytes */ local in function:_tr_flush_block 3050 static_lenb = (s->static_len+3+7)>>3; 3053 opt_lenb, s->opt_len, static_lenb, s->static_len, stored_len, 3056 if (static_lenb <= opt_lenb) opt_lenb = static_lenb; 3060 opt_lenb = static_lenb = stored_len + 5; /* force a stored block */ 3078 } else if (static_lenb >= 0) { /* force static trees */ 3080 } else if (static_lenb == opt_lenb) {
|
zlib.c | 3022 ulg opt_lenb, static_lenb; /* opt_len and static_len in bytes */ local in function:_tr_flush_block 3050 static_lenb = (s->static_len+3+7)>>3; 3053 opt_lenb, s->opt_len, static_lenb, s->static_len, stored_len, 3056 if (static_lenb <= opt_lenb) opt_lenb = static_lenb; 3060 opt_lenb = static_lenb = stored_len + 5; /* force a stored block */ 3078 } else if (static_lenb >= 0) { /* force static trees */ 3080 } else if (static_lenb == opt_lenb) {
|