Searched refs:opt_lenb (Results 1 - 5 of 5) sorted by relevance
/third_party/node/deps/v8/third_party/zlib/ |
H A D | trees.c | 918 ulg opt_lenb, static_lenb; /* opt_len and static_len in bytes */ local 946 opt_lenb = (s->opt_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 */ 963 if (stored_len+4 <= opt_lenb && buf != (char*)0) { 977 } else if (s->strategy == Z_FIXED || static_lenb == opt_lenb) {
|
/third_party/node/deps/zlib/ |
H A D | trees.c | 998 ulg opt_lenb, static_lenb; /* opt_len and static_len in bytes */ local 1026 opt_lenb = (s->opt_len + 3 + 7) >> 3; 1030 opt_lenb, s->opt_len, static_lenb, s->static_len, stored_len, 1034 if (static_lenb <= opt_lenb || s->strategy == Z_FIXED) 1036 opt_lenb = static_lenb; 1040 opt_lenb = static_lenb = stored_len + 5; /* force a stored block */ 1046 if (stored_len + 4 <= opt_lenb && buf != (char*)0) { 1057 } else if (static_lenb == opt_lenb) {
|
/third_party/libwebsockets/win32port/zlib/ |
H A D | trees.c | 931 ulg opt_lenb, static_lenb; /* opt_len and static_len in bytes */
local 959 opt_lenb = (s->opt_len+3+7)>>3;
963 opt_lenb, s->opt_len, static_lenb, s->static_len, stored_len,
966 if (static_lenb <= opt_lenb) opt_lenb = static_lenb;
970 opt_lenb = static_lenb = stored_len + 5; /* force a stored block */
976 if (stored_len+4 <= opt_lenb && buf != (char*)0) {
990 } else if (s->strategy == Z_FIXED || static_lenb == opt_lenb) {
|
/third_party/skia/third_party/externals/zlib/ |
H A D | trees.c | 917 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) {
|
/third_party/zlib/ |
H A D | trees.c | 1023 ulg opt_lenb, static_lenb; /* opt_len and static_len in bytes */ local 1051 opt_lenb = (s->opt_len + 3 + 7) >> 3; 1055 opt_lenb, s->opt_len, static_lenb, s->static_len, stored_len, 1059 if (static_lenb <= opt_lenb || s->strategy == Z_FIXED) 1061 opt_lenb = static_lenb; 1065 opt_lenb = static_lenb = stored_len + 5; /* force a stored block */ 1071 if (stored_len + 4 <= opt_lenb && buf != (char*)0) { 1082 } else if (static_lenb == opt_lenb) {
|
Completed in 9 milliseconds