Home
last modified time | relevance | path

Searched refs:is_wide (Results 1 – 25 of 439) sorted by relevance

12345678910>>...18

/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/hotspot/share/interpreter/
H A Dbytecode.cpp43 if (is_wide) { in assert_same_format_as()
48 int thisflags = Bytecodes::flags(testbc, is_wide) & Bytecodes::_all_fmt_bits; in assert_same_format_as()
49 int testflags = Bytecodes::flags(thisbc, is_wide) & Bytecodes::_all_fmt_bits; in assert_same_format_as()
56 void Bytecode::assert_index_size(int size, Bytecodes::Code bc, bool is_wide) { in assert_index_size() argument
57 int have_fmt = (Bytecodes::flags(bc, is_wide) in assert_index_size()
68 if (is_wide) need_fmt |= Bytecodes::_fmt_not_simple; in assert_index_size()
76 int have_fmt = Bytecodes::flags(bc, is_wide) & Bytecodes::_all_fmt_bits; in assert_offset_size()
82 if (is_wide) need_fmt |= Bytecodes::_fmt_not_simple; in assert_offset_size()
90 int have_fmt = Bytecodes::flags(bc, is_wide) & (Bytecodes::_all_fmt_bits in assert_constant_size()
98 if (is_wide) need_fmt |= Bytecodes::_fmt_not_simple; in assert_constant_size()
[all …]
H A Dbytecode.hpp77 int get_index_u2(Bytecodes::Code bc, bool is_wide = false) const { in get_index_u2() argument
78 assert_same_format_as(bc, is_wide); assert_index_size(2, bc, is_wide); in get_index_u2()
79 address p = addr_at(is_wide ? 2 : 1); in get_index_u2()
80 if (can_use_native_byte_order(bc, is_wide)) in get_index_u2()
114 int get_constant_u2(int offset, Bytecodes::Code bc, bool is_wide = false) const { in get_constant_u2() argument
115 assert_same_format_as(bc, is_wide); assert_constant_size(2, offset, bc, is_wide); in get_constant_u2()
120 void assert_same_format_as(Bytecodes::Code testbc, bool is_wide = false) const NOT_DEBUG_RETURN;
121 …static void assert_index_size(int required_size, Bytecodes::Code bc, bool is_wide = false) NOT_DEB…
122 …static void assert_offset_size(int required_size, Bytecodes::Code bc, bool is_wide = false) NOT_DE…
124 static void assert_native_index(Bytecodes::Code bc, bool is_wide = false) NOT_DEBUG_RETURN;
[all …]
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/hotspot/share/interpreter/
H A Dbytecode.cpp43 if (is_wide) { in assert_same_format_as()
48 int thisflags = Bytecodes::flags(testbc, is_wide) & Bytecodes::_all_fmt_bits; in assert_same_format_as()
49 int testflags = Bytecodes::flags(thisbc, is_wide) & Bytecodes::_all_fmt_bits; in assert_same_format_as()
56 void Bytecode::assert_index_size(int size, Bytecodes::Code bc, bool is_wide) { in assert_index_size() argument
57 int have_fmt = (Bytecodes::flags(bc, is_wide) in assert_index_size()
68 if (is_wide) need_fmt |= Bytecodes::_fmt_not_simple; in assert_index_size()
76 int have_fmt = Bytecodes::flags(bc, is_wide) & Bytecodes::_all_fmt_bits; in assert_offset_size()
82 if (is_wide) need_fmt |= Bytecodes::_fmt_not_simple; in assert_offset_size()
90 int have_fmt = Bytecodes::flags(bc, is_wide) & (Bytecodes::_all_fmt_bits in assert_constant_size()
98 if (is_wide) need_fmt |= Bytecodes::_fmt_not_simple; in assert_constant_size()
[all …]
H A Dbytecode.hpp77 int get_index_u2(Bytecodes::Code bc, bool is_wide = false) const { in get_index_u2() argument
78 assert_same_format_as(bc, is_wide); assert_index_size(2, bc, is_wide); in get_index_u2()
79 address p = addr_at(is_wide ? 2 : 1); in get_index_u2()
80 if (can_use_native_byte_order(bc, is_wide)) in get_index_u2()
114 int get_constant_u2(int offset, Bytecodes::Code bc, bool is_wide = false) const { in get_constant_u2() argument
115 assert_same_format_as(bc, is_wide); assert_constant_size(2, offset, bc, is_wide); in get_constant_u2()
120 void assert_same_format_as(Bytecodes::Code testbc, bool is_wide = false) const NOT_DEBUG_RETURN;
121 …static void assert_index_size(int required_size, Bytecodes::Code bc, bool is_wide = false) NOT_DEB…
122 …static void assert_offset_size(int required_size, Bytecodes::Code bc, bool is_wide = false) NOT_DE…
124 static void assert_native_index(Bytecodes::Code bc, bool is_wide = false) NOT_DEBUG_RETURN;
[all …]
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/hotspot/share/interpreter/
H A Dbytecode.cpp43 if (is_wide) { in assert_same_format_as()
48 int thisflags = Bytecodes::flags(testbc, is_wide) & Bytecodes::_all_fmt_bits; in assert_same_format_as()
49 int testflags = Bytecodes::flags(thisbc, is_wide) & Bytecodes::_all_fmt_bits; in assert_same_format_as()
56 void Bytecode::assert_index_size(int size, Bytecodes::Code bc, bool is_wide) { in assert_index_size() argument
57 int have_fmt = (Bytecodes::flags(bc, is_wide) in assert_index_size()
68 if (is_wide) need_fmt |= Bytecodes::_fmt_not_simple; in assert_index_size()
76 int have_fmt = Bytecodes::flags(bc, is_wide) & Bytecodes::_all_fmt_bits; in assert_offset_size()
82 if (is_wide) need_fmt |= Bytecodes::_fmt_not_simple; in assert_offset_size()
90 int have_fmt = Bytecodes::flags(bc, is_wide) & (Bytecodes::_all_fmt_bits in assert_constant_size()
98 if (is_wide) need_fmt |= Bytecodes::_fmt_not_simple; in assert_constant_size()
[all …]
H A Dbytecode.hpp77 int get_index_u2(Bytecodes::Code bc, bool is_wide = false) const { in get_index_u2() argument
78 assert_same_format_as(bc, is_wide); assert_index_size(2, bc, is_wide); in get_index_u2()
79 address p = addr_at(is_wide ? 2 : 1); in get_index_u2()
80 if (can_use_native_byte_order(bc, is_wide)) in get_index_u2()
114 int get_constant_u2(int offset, Bytecodes::Code bc, bool is_wide = false) const { in get_constant_u2() argument
115 assert_same_format_as(bc, is_wide); assert_constant_size(2, offset, bc, is_wide); in get_constant_u2()
120 void assert_same_format_as(Bytecodes::Code testbc, bool is_wide = false) const NOT_DEBUG_RETURN;
121 …static void assert_index_size(int required_size, Bytecodes::Code bc, bool is_wide = false) NOT_DEB…
122 …static void assert_offset_size(int required_size, Bytecodes::Code bc, bool is_wide = false) NOT_DE…
124 static void assert_native_index(Bytecodes::Code bc, bool is_wide = false) NOT_DEBUG_RETURN;
[all …]
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/hotspot/share/interpreter/
H A Dbytecode.cpp42 if (is_wide) { in assert_same_format_as()
47 int thisflags = Bytecodes::flags(testbc, is_wide) & Bytecodes::_all_fmt_bits; in assert_same_format_as()
48 int testflags = Bytecodes::flags(thisbc, is_wide) & Bytecodes::_all_fmt_bits; in assert_same_format_as()
55 void Bytecode::assert_index_size(int size, Bytecodes::Code bc, bool is_wide) { in assert_index_size() argument
56 int have_fmt = (Bytecodes::flags(bc, is_wide) in assert_index_size()
67 if (is_wide) need_fmt |= Bytecodes::_fmt_not_simple; in assert_index_size()
75 int have_fmt = Bytecodes::flags(bc, is_wide) & Bytecodes::_all_fmt_bits; in assert_offset_size()
81 if (is_wide) need_fmt |= Bytecodes::_fmt_not_simple; in assert_offset_size()
89 int have_fmt = Bytecodes::flags(bc, is_wide) & (Bytecodes::_all_fmt_bits in assert_constant_size()
97 if (is_wide) need_fmt |= Bytecodes::_fmt_not_simple; in assert_constant_size()
[all …]
H A Dbytecode.hpp77 int get_index_u2(Bytecodes::Code bc, bool is_wide = false) const { in get_index_u2() argument
78 assert_same_format_as(bc, is_wide); assert_index_size(2, bc, is_wide); in get_index_u2()
79 address p = addr_at(is_wide ? 2 : 1); in get_index_u2()
80 if (can_use_native_byte_order(bc, is_wide)) in get_index_u2()
114 int get_constant_u2(int offset, Bytecodes::Code bc, bool is_wide = false) const { in get_constant_u2() argument
115 assert_same_format_as(bc, is_wide); assert_constant_size(2, offset, bc, is_wide); in get_constant_u2()
120 void assert_same_format_as(Bytecodes::Code testbc, bool is_wide = false) const NOT_DEBUG_RETURN;
121 …static void assert_index_size(int required_size, Bytecodes::Code bc, bool is_wide = false) NOT_DEB…
122 …static void assert_offset_size(int required_size, Bytecodes::Code bc, bool is_wide = false) NOT_DE…
124 static void assert_native_index(Bytecodes::Code bc, bool is_wide = false) NOT_DEBUG_RETURN;
[all …]
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/hotspot/share/interpreter/
H A Dbytecode.cpp42 if (is_wide) { in assert_same_format_as()
47 int thisflags = Bytecodes::flags(testbc, is_wide) & Bytecodes::_all_fmt_bits; in assert_same_format_as()
48 int testflags = Bytecodes::flags(thisbc, is_wide) & Bytecodes::_all_fmt_bits; in assert_same_format_as()
55 void Bytecode::assert_index_size(int size, Bytecodes::Code bc, bool is_wide) { in assert_index_size() argument
56 int have_fmt = (Bytecodes::flags(bc, is_wide) in assert_index_size()
67 if (is_wide) need_fmt |= Bytecodes::_fmt_not_simple; in assert_index_size()
75 int have_fmt = Bytecodes::flags(bc, is_wide) & Bytecodes::_all_fmt_bits; in assert_offset_size()
81 if (is_wide) need_fmt |= Bytecodes::_fmt_not_simple; in assert_offset_size()
89 int have_fmt = Bytecodes::flags(bc, is_wide) & (Bytecodes::_all_fmt_bits in assert_constant_size()
97 if (is_wide) need_fmt |= Bytecodes::_fmt_not_simple; in assert_constant_size()
[all …]
H A Dbytecode.hpp77 int get_index_u2(Bytecodes::Code bc, bool is_wide = false) const { in get_index_u2() argument
78 assert_same_format_as(bc, is_wide); assert_index_size(2, bc, is_wide); in get_index_u2()
79 address p = addr_at(is_wide ? 2 : 1); in get_index_u2()
80 if (can_use_native_byte_order(bc, is_wide)) in get_index_u2()
114 int get_constant_u2(int offset, Bytecodes::Code bc, bool is_wide = false) const { in get_constant_u2() argument
115 assert_same_format_as(bc, is_wide); assert_constant_size(2, offset, bc, is_wide); in get_constant_u2()
120 void assert_same_format_as(Bytecodes::Code testbc, bool is_wide = false) const NOT_DEBUG_RETURN;
121 …static void assert_index_size(int required_size, Bytecodes::Code bc, bool is_wide = false) NOT_DEB…
122 …static void assert_offset_size(int required_size, Bytecodes::Code bc, bool is_wide = false) NOT_DE…
124 static void assert_native_index(Bytecodes::Code bc, bool is_wide = false) NOT_DEBUG_RETURN;
[all …]
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/hotspot/share/interpreter/
H A Dbytecode.cpp43 if (is_wide) { in assert_same_format_as()
48 int thisflags = Bytecodes::flags(testbc, is_wide) & Bytecodes::_all_fmt_bits; in assert_same_format_as()
49 int testflags = Bytecodes::flags(thisbc, is_wide) & Bytecodes::_all_fmt_bits; in assert_same_format_as()
56 void Bytecode::assert_index_size(int size, Bytecodes::Code bc, bool is_wide) { in assert_index_size() argument
57 int have_fmt = (Bytecodes::flags(bc, is_wide) in assert_index_size()
68 if (is_wide) need_fmt |= Bytecodes::_fmt_not_simple; in assert_index_size()
76 int have_fmt = Bytecodes::flags(bc, is_wide) & Bytecodes::_all_fmt_bits; in assert_offset_size()
82 if (is_wide) need_fmt |= Bytecodes::_fmt_not_simple; in assert_offset_size()
90 int have_fmt = Bytecodes::flags(bc, is_wide) & (Bytecodes::_all_fmt_bits in assert_constant_size()
98 if (is_wide) need_fmt |= Bytecodes::_fmt_not_simple; in assert_constant_size()
[all …]
H A Dbytecode.hpp77 int get_index_u2(Bytecodes::Code bc, bool is_wide = false) const { in get_index_u2() argument
78 assert_same_format_as(bc, is_wide); assert_index_size(2, bc, is_wide); in get_index_u2()
79 address p = addr_at(is_wide ? 2 : 1); in get_index_u2()
80 if (can_use_native_byte_order(bc, is_wide)) in get_index_u2()
114 int get_constant_u2(int offset, Bytecodes::Code bc, bool is_wide = false) const { in get_constant_u2() argument
115 assert_same_format_as(bc, is_wide); assert_constant_size(2, offset, bc, is_wide); in get_constant_u2()
120 void assert_same_format_as(Bytecodes::Code testbc, bool is_wide = false) const NOT_DEBUG_RETURN;
121 …static void assert_index_size(int required_size, Bytecodes::Code bc, bool is_wide = false) NOT_DEB…
122 …static void assert_offset_size(int required_size, Bytecodes::Code bc, bool is_wide = false) NOT_DE…
124 static void assert_native_index(Bytecodes::Code bc, bool is_wide = false) NOT_DEBUG_RETURN;
[all …]
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/hotspot/share/interpreter/
H A Dbytecode.cpp42 if (is_wide) { in assert_same_format_as()
47 int thisflags = Bytecodes::flags(testbc, is_wide) & Bytecodes::_all_fmt_bits; in assert_same_format_as()
48 int testflags = Bytecodes::flags(thisbc, is_wide) & Bytecodes::_all_fmt_bits; in assert_same_format_as()
55 void Bytecode::assert_index_size(int size, Bytecodes::Code bc, bool is_wide) { in assert_index_size() argument
56 int have_fmt = (Bytecodes::flags(bc, is_wide) in assert_index_size()
67 if (is_wide) need_fmt |= Bytecodes::_fmt_not_simple; in assert_index_size()
75 int have_fmt = Bytecodes::flags(bc, is_wide) & Bytecodes::_all_fmt_bits; in assert_offset_size()
81 if (is_wide) need_fmt |= Bytecodes::_fmt_not_simple; in assert_offset_size()
89 int have_fmt = Bytecodes::flags(bc, is_wide) & (Bytecodes::_all_fmt_bits in assert_constant_size()
97 if (is_wide) need_fmt |= Bytecodes::_fmt_not_simple; in assert_constant_size()
[all …]
H A Dbytecode.hpp77 int get_index_u2(Bytecodes::Code bc, bool is_wide = false) const { in get_index_u2() argument
78 assert_same_format_as(bc, is_wide); assert_index_size(2, bc, is_wide); in get_index_u2()
79 address p = addr_at(is_wide ? 2 : 1); in get_index_u2()
80 if (can_use_native_byte_order(bc, is_wide)) in get_index_u2()
114 int get_constant_u2(int offset, Bytecodes::Code bc, bool is_wide = false) const { in get_constant_u2() argument
115 assert_same_format_as(bc, is_wide); assert_constant_size(2, offset, bc, is_wide); in get_constant_u2()
120 void assert_same_format_as(Bytecodes::Code testbc, bool is_wide = false) const NOT_DEBUG_RETURN;
121 …static void assert_index_size(int required_size, Bytecodes::Code bc, bool is_wide = false) NOT_DEB…
122 …static void assert_offset_size(int required_size, Bytecodes::Code bc, bool is_wide = false) NOT_DE…
124 static void assert_native_index(Bytecodes::Code bc, bool is_wide = false) NOT_DEBUG_RETURN;
[all …]
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/hotspot/share/interpreter/
H A Dbytecode.cpp43 if (is_wide) { in assert_same_format_as()
48 int thisflags = Bytecodes::flags(testbc, is_wide) & Bytecodes::_all_fmt_bits; in assert_same_format_as()
49 int testflags = Bytecodes::flags(thisbc, is_wide) & Bytecodes::_all_fmt_bits; in assert_same_format_as()
56 void Bytecode::assert_index_size(int size, Bytecodes::Code bc, bool is_wide) { in assert_index_size() argument
57 int have_fmt = (Bytecodes::flags(bc, is_wide) in assert_index_size()
68 if (is_wide) need_fmt |= Bytecodes::_fmt_not_simple; in assert_index_size()
76 int have_fmt = Bytecodes::flags(bc, is_wide) & Bytecodes::_all_fmt_bits; in assert_offset_size()
82 if (is_wide) need_fmt |= Bytecodes::_fmt_not_simple; in assert_offset_size()
90 int have_fmt = Bytecodes::flags(bc, is_wide) & (Bytecodes::_all_fmt_bits in assert_constant_size()
98 if (is_wide) need_fmt |= Bytecodes::_fmt_not_simple; in assert_constant_size()
[all …]
H A Dbytecode.hpp77 int get_index_u2(Bytecodes::Code bc, bool is_wide = false) const { in get_index_u2() argument
78 assert_same_format_as(bc, is_wide); assert_index_size(2, bc, is_wide); in get_index_u2()
79 address p = addr_at(is_wide ? 2 : 1); in get_index_u2()
80 if (can_use_native_byte_order(bc, is_wide)) in get_index_u2()
114 int get_constant_u2(int offset, Bytecodes::Code bc, bool is_wide = false) const { in get_constant_u2() argument
115 assert_same_format_as(bc, is_wide); assert_constant_size(2, offset, bc, is_wide); in get_constant_u2()
120 void assert_same_format_as(Bytecodes::Code testbc, bool is_wide = false) const NOT_DEBUG_RETURN;
121 …static void assert_index_size(int required_size, Bytecodes::Code bc, bool is_wide = false) NOT_DEB…
122 …static void assert_offset_size(int required_size, Bytecodes::Code bc, bool is_wide = false) NOT_DE…
124 static void assert_native_index(Bytecodes::Code bc, bool is_wide = false) NOT_DEBUG_RETURN;
[all …]
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/hotspot/src/share/vm/interpreter/
H A Dbytecode.cpp42 if (is_wide) { in assert_same_format_as()
47 int thisflags = Bytecodes::flags(testbc, is_wide) & Bytecodes::_all_fmt_bits; in assert_same_format_as()
48 int testflags = Bytecodes::flags(thisbc, is_wide) & Bytecodes::_all_fmt_bits; in assert_same_format_as()
55 void Bytecode::assert_index_size(int size, Bytecodes::Code bc, bool is_wide) { in assert_index_size() argument
56 int have_fmt = (Bytecodes::flags(bc, is_wide) in assert_index_size()
67 if (is_wide) need_fmt |= Bytecodes::_fmt_not_simple; in assert_index_size()
75 int have_fmt = Bytecodes::flags(bc, is_wide) & Bytecodes::_all_fmt_bits; in assert_offset_size()
81 if (is_wide) need_fmt |= Bytecodes::_fmt_not_simple; in assert_offset_size()
89 int have_fmt = Bytecodes::flags(bc, is_wide) & (Bytecodes::_all_fmt_bits in assert_constant_size()
97 if (is_wide) need_fmt |= Bytecodes::_fmt_not_simple; in assert_constant_size()
[all …]
H A Dbytecode.hpp93 int get_index_u2(Bytecodes::Code bc, bool is_wide = false) const { in get_index_u2() argument
94 assert_same_format_as(bc, is_wide); assert_index_size(2, bc, is_wide); in get_index_u2()
95 address p = addr_at(is_wide ? 2 : 1); in get_index_u2()
96 if (can_use_native_byte_order(bc, is_wide)) in get_index_u2()
130 int get_constant_u2(int offset, Bytecodes::Code bc, bool is_wide = false) const { in get_constant_u2() argument
131 assert_same_format_as(bc, is_wide); assert_constant_size(2, offset, bc, is_wide); in get_constant_u2()
136 void assert_same_format_as(Bytecodes::Code testbc, bool is_wide = false) const NOT_DEBUG_RETURN;
137 …static void assert_index_size(int required_size, Bytecodes::Code bc, bool is_wide = false) NOT_DEB…
138 …static void assert_offset_size(int required_size, Bytecodes::Code bc, bool is_wide = false) NOT_DE…
140 static void assert_native_index(Bytecodes::Code bc, bool is_wide = false) NOT_DEBUG_RETURN;
[all …]
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/hotspot/src/share/vm/interpreter/
H A Dbytecode.cpp42 if (is_wide) { in assert_same_format_as()
47 int thisflags = Bytecodes::flags(testbc, is_wide) & Bytecodes::_all_fmt_bits; in assert_same_format_as()
48 int testflags = Bytecodes::flags(thisbc, is_wide) & Bytecodes::_all_fmt_bits; in assert_same_format_as()
55 void Bytecode::assert_index_size(int size, Bytecodes::Code bc, bool is_wide) { in assert_index_size() argument
56 int have_fmt = (Bytecodes::flags(bc, is_wide) in assert_index_size()
67 if (is_wide) need_fmt |= Bytecodes::_fmt_not_simple; in assert_index_size()
75 int have_fmt = Bytecodes::flags(bc, is_wide) & Bytecodes::_all_fmt_bits; in assert_offset_size()
81 if (is_wide) need_fmt |= Bytecodes::_fmt_not_simple; in assert_offset_size()
89 int have_fmt = Bytecodes::flags(bc, is_wide) & (Bytecodes::_all_fmt_bits in assert_constant_size()
97 if (is_wide) need_fmt |= Bytecodes::_fmt_not_simple; in assert_constant_size()
[all …]
H A Dbytecode.hpp93 int get_index_u2(Bytecodes::Code bc, bool is_wide = false) const { in get_index_u2() argument
94 assert_same_format_as(bc, is_wide); assert_index_size(2, bc, is_wide); in get_index_u2()
95 address p = addr_at(is_wide ? 2 : 1); in get_index_u2()
96 if (can_use_native_byte_order(bc, is_wide)) in get_index_u2()
130 int get_constant_u2(int offset, Bytecodes::Code bc, bool is_wide = false) const { in get_constant_u2() argument
131 assert_same_format_as(bc, is_wide); assert_constant_size(2, offset, bc, is_wide); in get_constant_u2()
136 void assert_same_format_as(Bytecodes::Code testbc, bool is_wide = false) const NOT_DEBUG_RETURN;
137 …static void assert_index_size(int required_size, Bytecodes::Code bc, bool is_wide = false) NOT_DEB…
138 …static void assert_offset_size(int required_size, Bytecodes::Code bc, bool is_wide = false) NOT_DE…
140 static void assert_native_index(Bytecodes::Code bc, bool is_wide = false) NOT_DEBUG_RETURN;
[all …]
/dports/textproc/cast2gif/cast2gif-0.1.0/cargo-crates/vt100-0.8.1/src/
H A Drow.rs64 if last_cell.is_wide() { in truncate()
84 let other = if cell.is_wide() { in clear_wide()
114 prev_was_wide = cell.is_wide(); in write_contents()
124 prev_col += if cell.is_wide() { 2 } else { 1 }; in write_contents()
164 prev_was_wide = cell.is_wide(); in write_contents_formatted()
209 prev_pos.col += if cell.is_wide() { 2 } else { 1 }; in write_contents_formatted()
213 && cell.is_wide() in write_contents_formatted()
287 if prev_first_cell.is_wide() { in write_contents_diff()
308 prev_was_wide = cell.is_wide(); in write_contents_diff()
356 && cell.is_wide() in write_contents_diff()
[all …]
/dports/japanese/w3m/w3m-2b59b9e/libwc/
H A Ducs.c290 wc_ccs is_wide = WC_CCS_IS_WIDE(cc.ccs); in wc_any_to_any() local
305 cc.ccs = is_wide ? WC_CCS_UNKNOWN_W : WC_CCS_UNKNOWN; in wc_any_to_any()
332 wc_ccs is_wide = WC_CCS_IS_WIDE(cc.ccs); in wc_any_to_any_ces() local
347 cc.ccs = is_wide ? WC_CCS_UNKNOWN_W : WC_CCS_UNKNOWN; in wc_any_to_any_ces()
350 cc = wc_ucs_to_any_list(ucs, is_wide ? st->tlistw : st->tlist); in wc_any_to_any_ces()
361 cc.ccs = is_wide ? WC_CCS_UNKNOWN_W : WC_CCS_UNKNOWN; in wc_any_to_any_ces()
382 cc = wc_ucs_to_any_list(ucs, is_wide ? st->tlist : st->tlistw); in wc_any_to_any_ces()
388 cc.ccs = is_wide ? WC_CCS_UNKNOWN_W : WC_CCS_UNKNOWN; in wc_any_to_any_ces()
396 wc_ccs is_wide = WC_CCS_IS_WIDE(cc.ccs); in wc_any_to_iso2022() local
404 cc = wc_ucs_to_any_list(ucs, is_wide ? st->tlistw : st->tlist); in wc_any_to_iso2022()
[all …]
/dports/japanese/w3m-img/w3m-2b59b9e/libwc/
H A Ducs.c290 wc_ccs is_wide = WC_CCS_IS_WIDE(cc.ccs); in wc_any_to_any() local
305 cc.ccs = is_wide ? WC_CCS_UNKNOWN_W : WC_CCS_UNKNOWN; in wc_any_to_any()
332 wc_ccs is_wide = WC_CCS_IS_WIDE(cc.ccs); in wc_any_to_any_ces() local
347 cc.ccs = is_wide ? WC_CCS_UNKNOWN_W : WC_CCS_UNKNOWN; in wc_any_to_any_ces()
350 cc = wc_ucs_to_any_list(ucs, is_wide ? st->tlistw : st->tlist); in wc_any_to_any_ces()
361 cc.ccs = is_wide ? WC_CCS_UNKNOWN_W : WC_CCS_UNKNOWN; in wc_any_to_any_ces()
382 cc = wc_ucs_to_any_list(ucs, is_wide ? st->tlist : st->tlistw); in wc_any_to_any_ces()
388 cc.ccs = is_wide ? WC_CCS_UNKNOWN_W : WC_CCS_UNKNOWN; in wc_any_to_any_ces()
396 wc_ccs is_wide = WC_CCS_IS_WIDE(cc.ccs); in wc_any_to_iso2022() local
404 cc = wc_ucs_to_any_list(ucs, is_wide ? st->tlistw : st->tlist); in wc_any_to_iso2022()
[all …]
/dports/www/w3m/w3m-2b59b9e/libwc/
H A Ducs.c290 wc_ccs is_wide = WC_CCS_IS_WIDE(cc.ccs); in wc_any_to_any() local
305 cc.ccs = is_wide ? WC_CCS_UNKNOWN_W : WC_CCS_UNKNOWN; in wc_any_to_any()
332 wc_ccs is_wide = WC_CCS_IS_WIDE(cc.ccs); in wc_any_to_any_ces() local
347 cc.ccs = is_wide ? WC_CCS_UNKNOWN_W : WC_CCS_UNKNOWN; in wc_any_to_any_ces()
350 cc = wc_ucs_to_any_list(ucs, is_wide ? st->tlistw : st->tlist); in wc_any_to_any_ces()
361 cc.ccs = is_wide ? WC_CCS_UNKNOWN_W : WC_CCS_UNKNOWN; in wc_any_to_any_ces()
382 cc = wc_ucs_to_any_list(ucs, is_wide ? st->tlist : st->tlistw); in wc_any_to_any_ces()
388 cc.ccs = is_wide ? WC_CCS_UNKNOWN_W : WC_CCS_UNKNOWN; in wc_any_to_any_ces()
396 wc_ccs is_wide = WC_CCS_IS_WIDE(cc.ccs); in wc_any_to_iso2022() local
404 cc = wc_ucs_to_any_list(ucs, is_wide ? st->tlistw : st->tlist); in wc_any_to_iso2022()
[all …]
/dports/www/w3m-img/w3m-2b59b9e/libwc/
H A Ducs.c290 wc_ccs is_wide = WC_CCS_IS_WIDE(cc.ccs); in wc_any_to_any() local
305 cc.ccs = is_wide ? WC_CCS_UNKNOWN_W : WC_CCS_UNKNOWN; in wc_any_to_any()
332 wc_ccs is_wide = WC_CCS_IS_WIDE(cc.ccs); in wc_any_to_any_ces() local
347 cc.ccs = is_wide ? WC_CCS_UNKNOWN_W : WC_CCS_UNKNOWN; in wc_any_to_any_ces()
350 cc = wc_ucs_to_any_list(ucs, is_wide ? st->tlistw : st->tlist); in wc_any_to_any_ces()
361 cc.ccs = is_wide ? WC_CCS_UNKNOWN_W : WC_CCS_UNKNOWN; in wc_any_to_any_ces()
382 cc = wc_ucs_to_any_list(ucs, is_wide ? st->tlist : st->tlistw); in wc_any_to_any_ces()
388 cc.ccs = is_wide ? WC_CCS_UNKNOWN_W : WC_CCS_UNKNOWN; in wc_any_to_any_ces()
396 wc_ccs is_wide = WC_CCS_IS_WIDE(cc.ccs); in wc_any_to_iso2022() local
404 cc = wc_ucs_to_any_list(ucs, is_wide ? st->tlistw : st->tlist); in wc_any_to_iso2022()
[all …]

12345678910>>...18