| /arkcompiler/ets_frontend/ts2panda/tests/statements/ |
| D | switch.test.ts | 44 let rhs = new VReg(); variable 75 let rhs = new VReg(); variable 112 let rhs = new VReg(); variable 149 let rhs = new VReg(); variable 185 let rhs = new VReg(); variable
|
| D | forIn.test.ts | 50 let rhs = new VReg(); variable 88 let rhs = new VReg(); variable 126 let rhs = new VReg(); variable 163 let rhs = new VReg(); variable
|
| /arkcompiler/runtime_core/libpandabase/ |
| D | macros.h | 146 #define ASSERT_OP(lhs, op, rhs) do { \ argument 159 #define CHECK_LE(lhs, rhs) ASSERT_OP(lhs, <=, rhs) argument 161 #define CHECK_LT(lhs, rhs) ASSERT_OP(lhs, <, rhs) argument 163 #define CHECK_GE(lhs, rhs) ASSERT_OP(lhs, >=, rhs) argument 165 #define CHECK_GT(lhs, rhs) ASSERT_OP(lhs, >, rhs) argument 167 #define CHECK_EQ(lhs, rhs) ASSERT_OP(lhs, ==, rhs) argument 169 #define CHECK_NE(lhs, rhs) ASSERT_OP(lhs, !=, rhs) argument 207 #define ASSERT_OP(lhs, op, rhs) // NOLINTNEXTLINE(cppcoreguidelines-macro-usage) argument 208 #define CHECK_LE(lhs, rhs) // NOLINTNEXTLINE(cppcoreguidelines-macro-usage) argument 209 #define CHECK_LT(lhs, rhs) // NOLINTNEXTLINE(cppcoreguidelines-macro-usage) argument [all …]
|
| /arkcompiler/toolchain/tooling/test/utils/ |
| D | test_util.h | 242 #define ASSERT_EQ(lhs, rhs) \ argument 251 #define ASSERT_NE(lhs, rhs) \ argument 260 #define ASSERT_STREQ(lhs, rhs) \ argument 285 #define ASSERT_LOCATION_EQ(lhs, rhs) \ argument
|
| /arkcompiler/runtime_core/verification/value/ |
| D | var_binding.h | 33 void Equate(Variables::Var lhs, Variable::Var rhs) in Equate()
|
| /arkcompiler/runtime_core/runtime/tests/tooling/ |
| D | test_util.h | 253 #define ASSERT_EQ(lhs, rhs) \ argument 262 #define ASSERT_NE(lhs, rhs) \ argument 271 #define ASSERT_STREQ(lhs, rhs) \ argument 296 #define ASSERT_LOCATION_EQ(lhs, rhs) \ argument
|
| /arkcompiler/ets_frontend/ts2panda/tests/expression/ |
| D | cmpBinary.test.ts | 301 let rhs = new VReg(); variable 325 let rhs = new VReg(); variable 340 let rhs = new VReg(); variable
|
| /arkcompiler/runtime_core/verification/type/ |
| D | type_system.h | 178 void Relate(TypeNum lhs, TypeNum rhs) in Relate() 210 bool CheckIfLhsParamsSubtypeOfRhs(const TypeParamsIdx &lhs, const TypeParamsIdx &rhs) const in CheckIfLhsParamsSubtypeOfRhs() 241 bool CheckIfLhsSubtypeOfRhs(TypeNum lhs, TypeNum rhs) const in CheckIfLhsSubtypeOfRhs() 253 bool IsInDirectRelation(TypeNum lhs, TypeNum rhs) const in IsInDirectRelation()
|
| /arkcompiler/runtime_core/libpandabase/utils/ |
| D | json_parser.h | 47 Value(Value &&rhs) noexcept in Value() function 60 void SetValue(T &&rhs) noexcept in SetValue()
|
| D | type_converter.cpp | 63 bool operator==(const ValueUnit &lhs, const ValueUnit &rhs) in operator ==() 82 bool operator!=(const ValueUnit &lhs, const ValueUnit &rhs) in operator !=()
|
| /arkcompiler/ets_frontend/es2panda/compiler/base/ |
| D | destructuring.cpp | 174 static void GenObjectWithRest(PandaGen *pg, const ir::ObjectExpression *object, VReg rhs) in GenObjectWithRest() 214 static void GenObject(PandaGen *pg, const ir::ObjectExpression *object, VReg rhs) in GenObject() 247 VReg rhs = pg->AllocReg(); in Compile() local
|
| /arkcompiler/runtime_core/compiler/tests/x86/ |
| D | asmjit_test.cpp | 63 x86::Gp rhs = a.zcx(); in TEST_F() local 105 x86::Gp rhs = a.zcx(); in TEST_F() local
|
| /arkcompiler/runtime_core/compiler/optimizer/optimizations/ |
| D | balance_expressions.cpp | 136 …Inst *rhs = LIKELY((split_idx + 1) != last_idx) ? GetOperand(split_idx + 1, last_idx) : sources_[s… in AllocateSourcesRec() local 175 Inst *BalanceExpressions::GenerateElementalOperator(Inst *lhs, Inst *rhs) in GenerateElementalOperator()
|
| /arkcompiler/runtime_core/verification/util/ |
| D | addr_map.h | 93 bool HasCommonMarks(const AddrMap &rhs) const in HasCommonMarks() 101 bool GetFirstCommonMark(const AddrMap &rhs, PtrType *ptr) const in GetFirstCommonMark()
|
| D | lazy.h | 332 auto JoinStreams(LHS lhs, RHS rhs) in JoinStreams() 349 auto JoinStreams(LHS lhs, MHS mhs, RHS rhs) in JoinStreams()
|
| D | set_operations.h | 83 S SetDifference(const S &lhs, const S &rhs) in SetDifference()
|
| D | relation.h | 59 void SymmRelate(RelIndex lhs, RelIndex rhs) in SymmRelate()
|
| /arkcompiler/runtime_core/compiler/tests/amd64/ |
| D | asmjit_test.cpp | 87 x86::Gp rhs = a.zcx(); in TEST_F() local 178 x86::Gp rhs = a.zcx(); in TEST_F() local
|
| /arkcompiler/runtime_core/libpandabase/tests/ |
| D | serializer_test.cpp | 77 bool operator==(const PodStruct &lhs, const PodStruct &rhs) in operator ==() 165 bool operator==(const TestStruct &lhs, const TestStruct &rhs) in operator ==()
|
| D | list_test.cpp | 35 bool operator==(const TestNode &lhs, const TestNode &rhs) in operator ==()
|
| /arkcompiler/runtime_core/compiler/optimizer/analysis/ |
| D | linear_order.cpp | 86 …auto cmp = [](BasicBlock *lhs, BasicBlock *rhs) { return lhs->GetGuestPc() >= rhs->GetGuestPc(); }; in AddSortedByPc()
|
| D | alias_analysis.cpp | 159 static bool PointerLess(const Pointer &lhs, const Pointer &rhs) in PointerLess()
|
| /arkcompiler/runtime_core/libpandafile/ |
| D | file.cpp | 427 const std::array<uint8_t, File::VERSION_SIZE> &rhs) in CompareVersions() 439 const std::array<uint8_t, File::VERSION_SIZE> &rhs) in operator <() 445 const std::array<uint8_t, File::VERSION_SIZE> &rhs) in operator >()
|
| /arkcompiler/runtime_core/verification/util/tests/ |
| D | relation_test.cpp | 62 auto rhs = (Set {2, 3, 4}); in TEST_F() local
|
| /arkcompiler/runtime_core/compiler/optimizer/optimizations/regalloc/ |
| D | reg_alloc_graph_coloring.cpp | 80 …:upper_bound(active_nodes.begin(), active_nodes.end(), node, [](const auto &lhs, const auto &rhs) { in BuildIG() 339 … [](const auto &lhs, const auto &rhs) { return lhs->GetBegin() < rhs->GetBegin(); }); in AddRange()
|