Home
last modified time | relevance | path

Searched full:op (Results 1 – 25 of 523) sorted by relevance

12345678910>>...21

/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/03.types/01.predefined_types/02.numeric_types/
Dhier1.params.yaml18 - { op: '=', val: 7 }
19 - { op: '+=', val: 17 }
20 - { op: '-=', val: 3 }
21 - { op: '*=', val: 70 }
22 - { op: '/=', val: 1 }
23 - { op: '%=', val: 3 }
24 - { op: '&=', val: 2 }
25 - { op: '|=', val: 15 }
26 - { op: '^=', val: 13 }
27 - { op: '<<=', val: 1280 }
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/07.expressions/29.assignment/02.compound_assignment_operators/
Dops.params.yaml16 - { type: byte, v: 127, op: '+', q: 1 }
17 - { type: byte, v: 127, op: '+', q: 127 }
18 - { type: byte, v: -128, op: '+', q: -1 }
20 - { type: short, v: 32767, op: '+', q: 1 }
21 - { type: short, v: 32767, op: '+', q: 32767 }
22 - { type: short, v: -32768, op: '+', q: -1 }
24 - { type: int, v: 2147483647, op: '+', q: 1 }
25 - { type: int, v: 2147483647, op: '+', q: 2147483647 }
26 - { type: int, v: -2147483648, op: '+', q: -1 }
28 - { type: long, v: 9223372036854775807, op: '+', q: 1 }
[all …]
Dops_boxed.params.yaml16 - { type: Byte, v: 127, op: '+', q: 1 }
17 - { type: Byte, v: 127, op: '+', q: 127 }
18 - { type: Byte, v: -128, op: '+', q: -1 }
20 - { type: Short, v: 32767, op: '+', q: 1 }
21 - { type: Short, v: 32767, op: '+', q: 32767 }
22 - { type: Short, v: -32768, op: '+', q: -1 }
24 - { type: Int, v: 2147483647, op: '+', q: 1 }
25 - { type: Int, v: 2147483647, op: '+', q: 2147483647 }
26 - { type: Int, v: -2147483648, op: '+', q: -1 }
28 - { type: Long, v: 9223372036854775807, op: '+', q: 1 }
[all …]
Dops_neg_rt.params.yaml17 - { type: float, v: Float.POSITIVE_INFINITY, op: '-', q: Float.POSITIVE_INFINITY }
18 - { type: float, v: Float.NEGATIVE_INFINITY, op: '-', q: Float.NEGATIVE_INFINITY }
19 - { type: double, v: Double.POSITIVE_INFINITY, op: '-', q: Double.POSITIVE_INFINITY }
20 - { type: double, v: Double.NEGATIVE_INFINITY, op: '-', q: Double.NEGATIVE_INFINITY }
21 - { type: float, v: Float.POSITIVE_INFINITY, op: '/', q: Float.POSITIVE_INFINITY }
22 - { type: float, v: Float.NEGATIVE_INFINITY, op: '/', q: Float.NEGATIVE_INFINITY }
23 - { type: double, v: Double.POSITIVE_INFINITY, op: '/', q: Double.POSITIVE_INFINITY }
24 - { type: double, v: Double.NEGATIVE_INFINITY, op: '/', q: Double.NEGATIVE_INFINITY }
25 - { type: float, v: Float.POSITIVE_INFINITY, op: '%', q: Float.POSITIVE_INFINITY }
26 - { type: float, v: Float.NEGATIVE_INFINITY, op: '%', q: Float.NEGATIVE_INFINITY }
[all …]
/arkcompiler/runtime_core/static_core/templates/options/
Doptions.h.erb30 % Common::options.select { |op| op.has_enum? }.each do |op|
31 namespace <%= op.camel_name.snakecase %> {
33 % op.flat_enum.each do |enumerator|
36 % op.sub_enums.each do |name, sub_enum|
40 FIRST = <%= op.flat_enum[0].snakecase.upcase %>,
41 LAST = <%= op.flat_enum[-1].snakecase.upcase %>,
48 % op.flat_enum.each do |enumerator|
60 % op.flat_enum.each do |enumerator|
67 } // namespace <%= op.camel_name.snakecase %>
86 % Common::options.each do |op|
[all …]
/arkcompiler/runtime_core/templates/options/
Doptions.h.erb48 % Common::options.each do |op|
49 % next if op.sub_option?
50 % next if op.deprecated?
51 parser->Add(&<%= op.field_name %>);
67 % Common::options.each do |op|
68 % if !op.lang_specific? && !op.has_lang_suboptions?
69 <%= op.type %> <%= op.getter_name %>([[maybe_unused]] std::string_view lang = "") const {
70 % if op.deprecated?
71 std::cerr << "WARNING: Option '<%= op.name %>' is deprecated and should not be used\n";
73 return <%= op.field_name %>.GetValue();
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/irtoc_scripts/
Dinterpreter_main_loop.irt18 handle_ets_movnullvalue(vreg_ptr(op[0]))
23 handle_ets_ldobj_name_short(op[0], as_id(op[1]), i.format.size)
25 handle_ets_ldobj_name_long(op[0], as_id(op[1]), i.format.size)
27 handle_ets_ldobj_name_obj(op[0], as_id(op[1]), i.format.size)
29 handle_ets_stobj_name_short(op[0], as_id(op[1]), i.format.size)
31 handle_ets_stobj_name_long(op[0], as_id(op[1]), i.format.size)
33 handle_ets_stobj_name_obj(op[0], as_id(op[1]), i.format.size)
36 handle_ets_equals(vreg_value(op[0]).ref, vreg_value(op[1]).ref)
38 handle_ets_equals_strict(vreg_value(op[0]).ref, vreg_value(op[1]).ref)
40 handle_ets_typeof(vreg_value(op[0]).ref)
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/06.contexts_and_conversions/03.numeric_operator_contexts/binary_numeric_promotion/
Dresult_type_bool.params.yaml16 - { type: byte, val: 1 as byte, rt: byte, rv: 1 as byte, op: '==' }
17 - { type: byte, val: 1 as byte, rt: short, rv: 1 as short, op: '!=' }
18 - { type: byte, val: 1 as byte, rt: char, rv: "c'0'", op: '>' }
19 - { type: byte, val: 1 as byte, rt: int, rv: 1, op: '>=' }
20 - { type: byte, val: 1 as byte, rt: long, rv: 1 as long, op: '<' }
21 - { type: byte, val: 1 as byte, rt: float, rv: 1.0 as float, op: '<=' }
22 - { type: byte, val: 1 as byte, rt: double, rv: 1.0, op: '==' }
24 - { type: byte, val: 1 as byte, rt: Byte, rv: new Byte(1 as byte), op: '!=' }
25 - { type: byte, val: 1 as byte, rt: Short, rv: new Short(1 as short), op: '>' }
26 - { type: byte, val: 1 as byte, rt: Char, rv: new Char(c'0'), op: '>=' }
[all …]
Dresult_type_bitwise.params.yaml16 - { type: byte, val: 1 as byte, rt: byte, rv: 1 as byte, op: '&', res: 3 }
17 - { type: byte, val: 1 as byte, rt: short, rv: 1 as short, op: '^', res: 3 }
18 - { type: byte, val: 1 as byte, rt: char, rv: "c'0'", op: '|', res: 3 }
19 - { type: byte, val: 1 as byte, rt: int, rv: 1, op: '&', res: 3 }
20 - { type: byte, val: 1 as byte, rt: long, rv: 1 as long, op: '^', res: 4 }
21 - { type: byte, val: 1 as byte, rt: float, rv: 1.0 as float, op: '&', res: 3 }
22 - { type: byte, val: 1 as byte, rt: double, rv: 4, op: '^', res: 4 }
24 - { type: byte, val: 1 as byte, rt: Byte, rv: new Byte(1 as byte), op: '|', res: 3 }
25 - { type: byte, val: 1 as byte, rt: Short, rv: new Short(1 as short), op: '&', res: 3 }
26 - { type: byte, val: 1 as byte, rt: Char, rv: new Char(c'0'), op: '^', res: 3 }
[all …]
Dresult_type_arith.params.yaml16 - { type: byte, val: 1 as byte, rt: byte, rv: 1 as byte, op: '+', res: 3 }
17 - { type: byte, val: 1 as byte, rt: short, rv: 1 as short, op: '-', res: 3 }
18 - { type: byte, val: 1 as byte, rt: char, rv: "c'0'", op: '*', res: 3 }
19 - { type: byte, val: 1 as byte, rt: int, rv: 1, op: '/', res: 3 }
20 - { type: byte, val: 1 as byte, rt: long, rv: 1 as long, op: '%', res: 4 }
21 - { type: byte, val: 1 as byte, rt: float, rv: 1.0 as float, op: '+', res: 7 }
22 - { type: byte, val: 1 as byte, rt: double, rv: 1.0, op: '-', res: 8 }
24 - { type: byte, val: 1 as byte, rt: Byte, rv: new Byte(1 as byte), op: '*', res: 3 }
25 - { type: byte, val: 1 as byte, rt: Short, rv: new Short(1 as short), op: '/', res: 3 }
26 - { type: byte, val: 1 as byte, rt: Char, rv: new Char(c'0'), op: '%', res: 3 }
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/07.expressions/24.relational_expressions/02.string_comparison_operators/
Dstring_comparison.params.yaml16 - {left: '', right: '', op: "<", result: "false"}
17 - {left: ' ', right: '', op: "<", result: "false"}
18 - {left: '', right: '\n', op: "<", result: "true"}
19 - {left: '\r', right: '', op: "<", result: "false"}
20 - {left: "'aa", right: "'aa", op: "<", result: "false"}
21 - {left: 'aa', right: 'aaa', op: "<", result: "true"}
22 - {left: 'ac', right: 'dc', op: "<", result: "true"}
23 - {left: 'AAAAAB', right: 'AAAAAAA', op: "<", result: "false"}
24 - {left: 'AAAAAA', right: 'aaaaaa', op: "<", result: "true"}
25 - {left: '~', right: '~A', op: "<", result: "true"}
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/17.experimental_features/01.character_type_and_literals/02.character_types_and_operations/comparison/
Dcmp_val.params.yaml18 - { op: '==', r: 'true' }
19 - { op: '!=', r: 'false' }
20 - { op: '<', r: 'false' }
21 - { op: '<=', r: 'true' }
22 - { op: '>', r: 'false' }
23 - { op: '>=', r: 'true' }
28 - { op: '==', r: 'true' }
29 - { op: '!=', r: 'false' }
30 - { op: '<', r: 'false' }
31 - { op: '<=', r: 'true' }
[all …]
Dcmp_ref.params.yaml18 - { op: '==', r: 'true' }
19 - { op: '!=', r: 'false' }
20 - { op: '<', r: 'false' }
21 - { op: '<=', r: 'true' }
22 - { op: '>', r: 'false' }
23 - { op: '>=', r: 'true' }
28 - { op: '==', r: 'true' }
29 - { op: '!=', r: 'false' }
30 - { op: '<', r: 'false' }
31 - { op: '<=', r: 'true' }
[all …]
/arkcompiler/ets_runtime/ecmascript/compiler/
Dmcr_gate_meta_data.cpp41 std::string GateMetaData::Str(TypedBinOp op) in Str() argument
44 #define TYPED_BIN_OP_NAME_MAP(OP) { TypedBinOp::OP, #OP }, in Str() argument
48 if (strMap.count(op) > 0) { in Str()
49 return strMap.at(op); in Str()
54 std::string GateMetaData::Str(TypedUnOp op) in Str() argument
57 #define TYPED_UN_OP_NAME_MAP(OP) { TypedUnOp::OP, #OP }, in Str() argument
61 if (strMap.count(op) > 0) { in Str()
62 return strMap.at(op); in Str()
67 std::string GateMetaData::Str(TypedJumpOp op) in Str() argument
70 #define TYPED_JUMP_OP_NAME_MAP(OP) { TypedJumpOp::OP, #OP }, in Str() argument
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/07.expressions/25.equality_expressions/01.numerical_equality_operators/
Dnumeric_equality.params.yaml16 - {left: "5", right: "5", op: "==", result: "true"}
17 - {left: "10", right: "5", op: "!=", result: "true"}
18 - {left: "5", right: "5", op: "!=", result: "false"}
19 - {left: "10", right: "5", op: "==", result: "false"}
20 - {left: "1", right: "1.0", op: "==", result: "true"}
21 - {left: "0", right: "0.5", op: "!=", result: "true"}
22 - {left: "0", right: "-0", op: "==", result: "true"}
24 - {left: "new Int(5)", right: "new Int(5)", op: "==", result: "true"}
25 - {left: "new Long(10)", right: "new Long(5)", op: "!=", result: "true"}
26 - {left: "new Short(5 as short)", right: "new Short(5 as short)", op: "!=", result: "false"}
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/07.expressions/25.equality_expressions/02.string_equality_operators/
Dstring_eq_cte.params.yaml16 - { ltype: 'String', lval: '"test0"', op: '==', rtype: 'Boolean', rval: 'true' }
17 - { ltype: 'String', lval: '"test1"', op: '==', rtype: 'Byte' , rval: '0' }
18 - { ltype: 'String', lval: '"test2"', op: '==', rtype: 'Int' , rval: '-134242' }
19 - { ltype: 'String', lval: '"test3"', op: '==', rtype: 'Short' , rval: '43000' }
20 - { ltype: 'String', lval: '"test4"', op: '==', rtype: 'Long' , rval: '147483647' }
22 - { rtype: 'String', rval: '"test5"', op: '==', ltype: 'Float', lval: '0.1' }
23 - { rtype: 'String', rval: '"test6"', op: '==', ltype: 'Double', lval: '4E10' }
24 - { rtype: 'String', rval: '"test7"', op: '==', ltype: 'BigInt', lval: '123456789n' }
25 - { rtype: 'String', rval: '"test8"', op: '==', ltype: 'FixedArray<String>', lval: '["test1"]' }
26 - { rtype: 'String', rval: '"test9"', op: '==', ltype: 'TestClass', lval: 'new TestClass()' }
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/07.expressions/25.equality_expressions/03.bigint_equality_operators/
Dbigint_eq_cte.params.yaml15 - { ltype: 'BigInt', lval: '1n', op: '==', rtype: 'Boolean', rval: 'true' }
16 - { ltype: 'BigInt', lval: '1003n"', op: '==', rtype: 'Byte' , rval: '0' }
17 - { ltype: 'BigInt', lval: '14930n', op: '==', rtype: 'Int' , rval: '-134242' }
18 - { ltype: 'BigInt', lval: '495059n', op: '==', rtype: 'Short' , rval: '43000' }
19 - { ltype: 'BigInt', lval: '-234352n', op: '==', rtype: 'Long' , rval: '147483647' }
21 - { rtype: 'BigInt', rval: '-2344350531n', op: '==', ltype: 'Float', lval: '0.1' }
22 - { rtype: 'BigInt', rval: '13433553955n', op: '==', ltype: 'Double', lval: '4E10' }
23 - { rtype: 'BigInt', rval: '90009113640n', op: '==', ltype: 'String', lval: '"test"' }
24 …- { rtype: 'BigInt', rval: '12001201300n', op: '==', ltype: 'FixedArray<BigInt>', lval: '[6666666n…
25 … - { rtype: 'BigInt', rval: '-5001359991n', op: '==', ltype: 'TestClass', lval: 'new TestClass()' }
[all …]
Deq_n.params.yaml15 - { b: '0n', exp: '"0"', op: '==' }
16 - { b: '0n', exp: '"0"', op: '===' }
18 - { b: '0n', exp: "c'\\u0000'", op: '==' }
19 - { b: '0n', exp: "c'\\u0000'", op: '===' }
21 - { b: '0n', exp: '0', op: '!=' }
22 - { b: '0n', exp: '0', op: '!==' }
24 - { b: '0n', exp: '0.0', op: '!=' }
25 - { b: '0n', exp: '0.0', op: '!==' }
27 - { b: '0n', exp: 'false', op: '==' }
28 - { b: '0n', exp: 'false', op: '===' }
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/07.expressions/26.bitwise_and_logical_expressions/01.integer_bitwise_operators/
Dinteger_xor.params.yaml16 …- {xorigin: 0, yorigin: 0, op: "^", dest: 0, xbits: "0b00000000", ybits: "0b00000000", db…
17 …- {xorigin: 0, yorigin: 85, op: "^", dest: 85, xbits: "0b00000000", ybits: "0b01010101", db…
18 …- {xorigin: 0, yorigin: -86, op: "^", dest: -86, xbits: "0b00000000", ybits: "0b10101010", db…
19 …- {xorigin: 0, yorigin: 15, op: "^", dest: 15, xbits: "0b00000000", ybits: "0b00001111", db…
20 …- {xorigin: 0, yorigin: -16, op: "^", dest: -16, xbits: "0b00000000", ybits: "0b11110000", db…
21 …- {xorigin: 0, yorigin: 51, op: "^", dest: 51, xbits: "0b00000000", ybits: "0b00110011", db…
22 …- {xorigin: 0, yorigin: -52, op: "^", dest: -52, xbits: "0b00000000", ybits: "0b11001100", db…
23 …- {xorigin: 0, yorigin: -127, op: "^", dest: -127, xbits: "0b00000000", ybits: "0b10000001", db…
24 …- {xorigin: 0, yorigin: -103, op: "^", dest: -103, xbits: "0b00000000", ybits: "0b10011001", db…
25 …- {xorigin: 0, yorigin: 102, op: "^", dest: 102, xbits: "0b00000000", ybits: "0b01100110", db…
[all …]
Dinteger_and.params.yaml16 …- {xorigin: 0, yorigin: 0, op: "&", dest: 0, xbits: "0b00000000", ybits: "0b00000000", db…
17 …- {xorigin: 0, yorigin: 85, op: "&", dest: 0, xbits: "0b00000000", ybits: "0b01010101", db…
18 …- {xorigin: 0, yorigin: -86, op: "&", dest: 0, xbits: "0b00000000", ybits: "0b10101010", db…
19 …- {xorigin: 0, yorigin: 15, op: "&", dest: 0, xbits: "0b00000000", ybits: "0b00001111", db…
20 …- {xorigin: 0, yorigin: -16, op: "&", dest: 0, xbits: "0b00000000", ybits: "0b11110000", db…
21 …- {xorigin: 0, yorigin: 51, op: "&", dest: 0, xbits: "0b00000000", ybits: "0b00110011", db…
22 …- {xorigin: 0, yorigin: -52, op: "&", dest: 0, xbits: "0b00000000", ybits: "0b11001100", db…
23 …- {xorigin: 0, yorigin: -127, op: "&", dest: 0, xbits: "0b00000000", ybits: "0b10000001", db…
24 …- {xorigin: 0, yorigin: -103, op: "&", dest: 0, xbits: "0b00000000", ybits: "0b10011001", db…
25 …- {xorigin: 0, yorigin: 102, op: "&", dest: 0, xbits: "0b00000000", ybits: "0b01100110", db…
[all …]
Dinteger_or.params.yaml16 …- {xorigin: 0, yorigin: 0, op: "|", dest: 0, xbits: "0b00000000", ybits: "0b00000000", db…
17 …- {xorigin: 0, yorigin: 85, op: "|", dest: 85, xbits: "0b00000000", ybits: "0b01010101", db…
18 …- {xorigin: 0, yorigin: -86, op: "|", dest: -86, xbits: "0b00000000", ybits: "0b10101010", db…
19 …- {xorigin: 0, yorigin: 15, op: "|", dest: 15, xbits: "0b00000000", ybits: "0b00001111", db…
20 …- {xorigin: 0, yorigin: -16, op: "|", dest: -16, xbits: "0b00000000", ybits: "0b11110000", db…
21 …- {xorigin: 0, yorigin: 51, op: "|", dest: 51, xbits: "0b00000000", ybits: "0b00110011", db…
22 …- {xorigin: 0, yorigin: -52, op: "|", dest: -52, xbits: "0b00000000", ybits: "0b11001100", db…
23 …- {xorigin: 0, yorigin: -127, op: "|", dest: -127, xbits: "0b00000000", ybits: "0b10000001", db…
24 …- {xorigin: 0, yorigin: -103, op: "|", dest: -103, xbits: "0b00000000", ybits: "0b10011001", db…
25 …- {xorigin: 0, yorigin: 102, op: "|", dest: 102, xbits: "0b00000000", ybits: "0b01100110", db…
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/07.expressions/24.relational_expressions/01.numerical_comparison_operators/
Dfloat_comparison.params.yaml18 …- {xtype: double, xboxed: Double, xvalue: 0.0, ytype: double, yboxed: Double, yvalue: 1.0, op: "…
19 …- {xtype: double, xboxed: Double, xvalue: 1.0, ytype: double, yboxed: Double, yvalue: 0.0, op: "…
20 …- {xtype: double, xboxed: Double, xvalue: -1.0, ytype: double, yboxed: Double, yvalue: 0.0, op: "…
21 …- {xtype: double, xboxed: Double, xvalue: 0.0, ytype: double, yboxed: Double, yvalue: -1.0, op: "…
25 …- {xtype: float, xboxed: Float, xvalue: 0.0, ytype: float, yboxed: Float, yvalue: 1.0, op: ">", …
26 …- {xtype: float, xboxed: Float, xvalue: 1.0, ytype: float, yboxed: Float, yvalue: 0.0, op: ">", …
27 …- {xtype: float, xboxed: Float, xvalue: -1.0, ytype: float, yboxed: Float, yvalue: 0.0, op: ">", …
28 …- {xtype: float, xboxed: Float, xvalue: 0.0, ytype: float, yboxed: Float, yvalue: -1.0, op: ">", …
32 …- {xtype: double, xboxed: Double, xvalue: 0.0, ytype: double, yboxed: Double, yvalue: 1.0, op: "…
33 …- {xtype: double, xboxed: Double, xvalue: 1.0, ytype: double, yboxed: Double, yvalue: 0.0, op: "…
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/07.expressions/25.equality_expressions/04.boolean_equality_operators/
Dboolean_equality_operator.params.yaml16 - {left: "true", right: "true", op: "==", result: "true"}
17 - {left: "true", right: "false", op: "==", result: "false"}
18 - {left: "false", right: "true", op: "==", result: "false"}
19 - {left: "false", right: "false", op: "==", result: "true"}
21 - {left: "true", right: "true", op: "!=", result: "false"}
22 - {left: "true", right: "false", op: "!=", result: "true"}
23 - {left: "false", right: "true", op: "!=", result: "true"}
24 - {left: "false", right: "false", op: "!=", result: "false"}
26 - {left: "true", right: "new Boolean(true)", op: "==", result: "true"}
27 - {left: "true", right: "new Boolean(false)", op: "==", result: "false"}
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/07.expressions/24.relational_expressions/04.boolean_comparison_operators/
Dboolean_comparison_neg.params.yaml16 - {ltype: "boolean", rtype: "int", left: "false", right: 99, op: "<"}
17 - {ltype: "boolean", rtype: "double", left: "true", right: 25.145, op: "<"}
18 - {ltype: "boolean", rtype: "char", left: "true", right: c'f', op: "<"}
20 - {ltype: "int", rtype: "boolean", left: 0, right: "false", op: "<="}
21 - {ltype: "double", rtype: "boolean", left: -0.9999999, right: "true", op: "<="}
22 - {ltype: "char", rtype: "boolean", left: c't', right: "true", op: "<="}
24 - {ltype: "boolean", rtype: "int", left: "false", right: -532, op: ">"}
25 - {ltype: "boolean", rtype: "double", left: "true", right: 538.000000001, op: ">"}
26 - {ltype: "boolean", rtype: "char", left: "false", right: c'0', op: ">"}
28 - {ltype: "int", rtype: "boolean", left: 1, right: "true", op: ">="}
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/07.expressions/24.relational_expressions/03.bigint_relational_operators/
Drel_n.params.yaml15 - { b: '0n', exp: '"0"', op: '<' }
16 - { b: '0n', exp: '"0"', op: '<=' }
18 - { b: '0n', exp: "c'\\u0000'", op: '>' }
19 - { b: '0n', exp: "c'\\u0000'", op: '>=' }
21 - { b: '0n', exp: '0', op: '<' }
22 - { b: '0n', exp: '0', op: '<=' }
24 - { b: '0n', exp: '0.0', op: '>' }
25 - { b: '0n', exp: '0.0', op: '>=' }
27 - { b: '0n', exp: 'false', op: '<' }
28 - { b: '0n', exp: 'false', op: '<=' }
[all …]

12345678910>>...21