Home
last modified time | relevance | path

Searched full:e2 (Results 1 – 25 of 31) sorted by relevance

12

/arkcompiler/runtime_core/libpandabase/serializer/
Dstruct_to_tuple.h40 SERIALIZE_INTERNAL_STRUCT_TO_TUPLE_IMPL(3, e0, e1, e2);
41 SERIALIZE_INTERNAL_STRUCT_TO_TUPLE_IMPL(4, e0, e1, e2, e3);
42 SERIALIZE_INTERNAL_STRUCT_TO_TUPLE_IMPL(5, e0, e1, e2, e3, e4);
43 SERIALIZE_INTERNAL_STRUCT_TO_TUPLE_IMPL(6, e0, e1, e2, e3, e4, e5);
44 SERIALIZE_INTERNAL_STRUCT_TO_TUPLE_IMPL(7, e0, e1, e2, e3, e4, e5, e6);
45 SERIALIZE_INTERNAL_STRUCT_TO_TUPLE_IMPL(8, e0, e1, e2, e3, e4, e5, e6, e7);
46 SERIALIZE_INTERNAL_STRUCT_TO_TUPLE_IMPL(9, e0, e1, e2, e3, e4, e5, e6, e7, e8);
47 SERIALIZE_INTERNAL_STRUCT_TO_TUPLE_IMPL(10, e0, e1, e2, e3, e4, e5, e6, e7, e8, e9);
48 SERIALIZE_INTERNAL_STRUCT_TO_TUPLE_IMPL(11, e0, e1, e2, e3, e4, e5, e6, e7, e8, e9, e10);
49 SERIALIZE_INTERNAL_STRUCT_TO_TUPLE_IMPL(12, e0, e1, e2, e3, e4, e5, e6, e7, e8, e9, e10, e11);
[all …]
/arkcompiler/runtime_core/verification/util/tests/
Dflags.cpp24 enum class Enum { E1, E2, E3 }; in TEST() enumerator
25 using F = panda::verifier::FlagsForEnum<size_t, Enum, Enum::E1, Enum::E2, Enum::E3>; in TEST()
28 flags[Enum::E2] = true; in TEST()
29 EXPECT_TRUE(flags[Enum::E2]); in TEST()
32 flags[Enum::E2] = false; in TEST()
34 EXPECT_FALSE(flags[Enum::E2]); in TEST()
37 flags[Enum::E2] = true; in TEST()
40 EXPECT_TRUE(flags[Enum::E2]); in TEST()
44 EXPECT_TRUE(flags[Enum::E2]); in TEST()
/arkcompiler/ets_runtime/ecmascript/compiler/
Dllvm_ir_builder.h206 V(Add, (GateRef gate, GateRef e1, GateRef e2)) \
207 V(Sub, (GateRef gate, GateRef e1, GateRef e2)) \
208 V(Mul, (GateRef gate, GateRef e1, GateRef e2)) \
209 V(FloatDiv, (GateRef gate, GateRef e1, GateRef e2)) \
210 V(IntDiv, (GateRef gate, GateRef e1, GateRef e2)) \
211 V(UDiv, (GateRef gate, GateRef e1, GateRef e2)) \
212 V(IntOr, (GateRef gate, GateRef e1, GateRef e2)) \
213 V(IntAnd, (GateRef gate, GateRef e1, GateRef e2)) \
214 V(IntXor, (GateRef gate, GateRef e1, GateRef e2)) \
215 V(IntLsr, (GateRef gate, GateRef e1, GateRef e2)) \
[all …]
Dllvm_ir_builder.cpp1127 void LLVMIRBuilder::VisitMod(GateRef gate, GateRef e1, GateRef e2) in VisitMod() argument
1130 LLVMValueRef e2Value = gate2LValue_[e2]; in VisitMod()
1133 ASSERT(ConvertLLVMTypeFromGate(gate) == ConvertLLVMTypeFromGate(e2)); in VisitMod()
1408 void LLVMIRBuilder::VisitAdd(GateRef gate, GateRef e1, GateRef e2) in VisitAdd() argument
1411 LLVMValueRef e2Value = gate2LValue_[e2]; in VisitAdd()
1450 void LLVMIRBuilder::VisitSub(GateRef gate, GateRef e1, GateRef e2) in VisitSub() argument
1453 LLVMValueRef e2Value = gate2LValue_[e2]; in VisitSub()
1486 void LLVMIRBuilder::VisitMul(GateRef gate, GateRef e1, GateRef e2) in VisitMul() argument
1489 LLVMValueRef e2Value = gate2LValue_[e2]; in VisitMul()
1610 void LLVMIRBuilder::VisitCmp(GateRef gate, GateRef e1, GateRef e2) in VisitCmp() argument
[all …]
/arkcompiler/runtime_core/libpandabase/tests/
Dexpected_test.cpp69 auto e2 = Expected<int, ErrorCode>(Unexpected(ErrorCode::First)); in TEST() local
72 EXPECT_FALSE(e2); in TEST()
73 EXPECT_EQ(e2.Error(), ErrorCode::First); in TEST()
85 const auto e2 = Expected<int, ErrorCode>(1); in TEST() local
86 EXPECT_EQ(e2.Value(), 1); in TEST()
87 EXPECT_EQ(*e2, 1); in TEST()
/arkcompiler/runtime_core/tests/cts-generator/cts-template/
Dthrow.yaml31 .record E2 {}
350 isinstance E2
382 .catch E2, try_begin, try_end, catch_E2_block_begin
387 - values: [1, 2, 0, 4, E2]
502 .catch E2, try_begin, try_end, catch_E2_block_begin
506 - values: [E2, 0, 2, 3]
571 .catch E2, try_begin, try_end, catch_block_begin
578 - E2
651 .catch E2, begin2, end2, catch2
667 - E2
[all …]
Djnez.yaml390 .record E2 {}
429 .catch E2, catch_E1_begin, catch_E1_end, catch_E2_begin, catch_E2_end
Djgtz.yaml399 .record E2 {}
438 .catch E2, catch_E1_begin, catch_E1_end, catch_E2_begin, catch_E2_end
Djeqz.yaml389 .record E2 {}
428 .catch E2, catch_E1_begin, catch_E1_end, catch_E2_begin, catch_E2_end
Djltz.yaml402 .record E2 {}
441 .catch E2, catch_E1_begin, catch_E1_end, catch_E2_begin, catch_E2_end
Djlez.yaml464 .record E2 {}
503 .catch E2, catch_E1_begin, catch_E1_end, catch_E2_begin, catch_E2_end
Djgez.yaml459 .record E2 {}
498 .catch E2, catch_E1_begin, catch_E1_end, catch_E2_begin, catch_E2_end
Djnez.obj.yaml136 .record E2 {}
180 .catch E2, catch_E1_begin, catch_E1_end, catch_E2_begin, catch_E2_end
Djeqz.obj.yaml136 .record E2 {}
180 .catch E2, catch_E1_begin, catch_E1_end, catch_E2_begin, catch_E2_end
Djne.yaml258 .record E2 {}
298 .catch E2, catch_E1_begin, catch_E1_end, catch_E2_begin, catch_E2_end
Djlt.yaml258 .record E2 {}
298 .catch E2, catch_E1_begin, catch_E1_end, catch_E2_begin, catch_E2_end
Djgt.yaml258 .record E2 {}
298 .catch E2, catch_E1_begin, catch_E1_end, catch_E2_begin, catch_E2_end
Djeq.yaml262 .record E2 {}
302 .catch E2, catch_E1_begin, catch_E1_end, catch_E2_begin, catch_E2_end
Djle.yaml258 .record E2 {}
298 .catch E2, catch_E1_begin, catch_E1_end, catch_E2_begin, catch_E2_end
Djge.yaml258 .record E2 {}
298 .catch E2, catch_E1_begin, catch_E1_end, catch_E2_begin, catch_E2_end
Djeq.obj.yaml276 .record E2 {}
321 .catch E2, catch_E1_begin, catch_E1_end, catch_E2_begin, catch_E2_end
/arkcompiler/runtime_core/compiler/tests/
Dtry_catch_resolving_test.cpp91 .record E2 {} in TEST_F()
116 .catch E2, try_begin, try_end, catch_block2 in TEST_F()
/arkcompiler/ets_frontend/es2panda/test/parser/js/
Dtest-var-decl.js25 var e1 = 2, e2;
Dtest-var-decl-expected.txt332 "name": "e2",
/arkcompiler/runtime_core/libpandabase/os/
Dstacktrace.cpp199 … [](const VmaEntry &e1, const VmaEntry &e2) { return e1.end_addr < e2.end_addr; }); in FindVma() argument

12