Searched refs:lv (Results 1 - 11 of 11) sorted by relevance
/arkcompiler/runtime_core/static_core/libpandabase/taskmanager/ |
H A D | task_queue_interface.h | 37 friend constexpr bool operator==(const TaskQueueId &lv, const TaskQueueId &rv) in operator ==() argument 39 return lv.val_ == rv.val_; in operator ==() 42 friend constexpr bool operator!=(const TaskQueueId &lv, const TaskQueueId &rv) in operator !=() argument 44 return lv.val_ != rv.val_; in operator !=() 47 friend constexpr bool operator<(const TaskQueueId &lv, const TaskQueueId &rv) in operator <() argument 49 return lv.val_ < rv.val_; in operator <()
|
H A D | task_scheduler.cpp | 110 [](const WorkerThread *lv, const WorkerThread *rv) { return lv->Size() < rv->Size(); }); in StealTaskFromOtherWorker() 269 workers_.begin(), workers_.end(), [&properties](const WorkerThread *lv, const WorkerThread *rv) { in StealAndExecuteOneTaskFromWorkers() 270 return lv->CountOfTasksWithProperties(properties) < rv->CountOfTasksWithProperties(properties); in StealAndExecuteOneTaskFromWorkers()
|
H A D | task.h | 139 friend constexpr bool operator==(const TaskProperties &lv, const TaskProperties &rv) in operator ==() argument 141 return lv.val_ == rv.val_; in operator ==()
|
/arkcompiler/runtime_core/static_core/runtime/tests/ |
H A D | method_test.cpp | 350 pandasm::debuginfo::LocalVariable lv; in TEST_F() local 351 lv.name = "a"; in TEST_F() 352 lv.signature = "I"; in TEST_F() 353 lv.reg = 0; in TEST_F() 354 lv.start = 0; in TEST_F() 355 lv.length = 5U; in TEST_F() 357 function.localVariableDebug.push_back(lv); in TEST_F() 359 lv.name = "b"; in TEST_F() 360 lv.start = 5U; in TEST_F() 361 lv in TEST_F() [all...] |
/arkcompiler/runtime_core/static_core/verification/util/ |
H A D | lazy.h | 339 auto lv = lhs(); 340 if (!lv) { 347 return std::make_tuple(*lv, *rv); 358 auto lv = lhs(); 359 if (!lv) { 370 return std::make_tuple(*lv, *mv, *rv);
|
/arkcompiler/ets_runtime/ecmascript/stubs/ |
H A D | runtime_optimized_stubs-inl.h | 80 uint16_t lv = (((vv - base::utf_helper::DECODE_SECOND_FACTOR) & base::utf_helper::BIT16_MASK) + in UTF16EncodeCodePoint() local 86 base::StringHelper::Utf16ToU16String(&lv, 1)); in UTF16EncodeCodePoint()
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/llvm/ |
H A D | llvm_ir_builder.h | 453 void Bind(const GateRef g, const LLVMValueRef lv) in Bind() argument 455 gate2LValue_[g] = lv; in Bind()
|
H A D | llvm_ir_builder.cpp | 1151 auto lv = LLVMBuildPtrToInt(builder_, in VisitAlloca() local 1154 Bind(gate, lv); in VisitAlloca()
|
/arkcompiler/ets_runtime/ecmascript/builtins/ |
H A D | builtins_global.cpp | 650 uint16_t lv = (((vv - base::utf_helper::DECODE_SECOND_FACTOR) & BIT16_MASK) + in UTF16EncodeCodePoint() local 655 StringHelper::Utf16ToU16String(&lv, 1)); in UTF16EncodeCodePoint()
|
/arkcompiler/ets_frontend/ets2panda/checker/ |
H A D | ETSAnalyzer.cpp | 1535 varbinder::LocalVariable *lv = objType->GetProperty(pname, searchFlags); in CheckObjectExprProps() local 1536 if (lv == nullptr) { in CheckObjectExprProps() 1540 checker->ValidatePropertyAccess(lv, objType, propExpr->Start()); in CheckObjectExprProps() 1543 key->AsIdentifier()->SetVariable(lv); in CheckObjectExprProps() 1546 auto *propType = checker->GetTypeOfVariable(lv); in CheckObjectExprProps()
|
/arkcompiler/ets_frontend/es2panda/test/compiler/js/ |
H A D | cocos_worker_test.js | [all...] |
Completed in 45 milliseconds