Home
last modified time | relevance | path

Searched full:cnt (Results 1 – 22 of 22) sorted by relevance

/arkcompiler/runtime_core/tests/cts-generator/runner/
Dresult.rb19 @@stats = { passed: { cnt: 0, files: [] },
20 failed: { cnt: 0, files: [] },
21 core: { cnt: 0, files: [] },
22 compilation_error: { cnt: 0, files: [] },
23 quickening_error: { cnt: 0, files: [] },
24 excluded: { cnt: 0, files: [] }}
31 @@stats[:compilation_error][:cnt] += 1
39 @@stats[:quickening_error][:cnt] += 1
47 @@stats[:compilation_error][:cnt] += 1
55 @@stats[:passed][:cnt] += 1
[all …]
/arkcompiler/runtime_core/tests/cts-coverage-tool/lib/
Dspec.rb228 cnt = 0
230 cnt += proc_test_instruction(ti, spec_group, file)
232 cnt
250 cnt = 0
252 cnt += proc_test_description(tda, spec_group, file)
254 cnt
273 cnt = 0
275 cnt += proc_test_exception(te, spec_group, file)
277 cnt
296 cnt = 0
[all …]
/arkcompiler/ets_frontend/es2panda/lexer/token/
DsourceLocation.cpp37 range.cnt++; in AddCol()
82 if (diff < (range.cnt * range.byteSize)) { in GetLocation()
87 diff -= range.cnt * range.byteSize; in GetLocation()
88 col += range.cnt; in GetLocation()
DsourceLocation.h78 size_t cnt {1};
/arkcompiler/runtime_core/runtime/tests/
Dg1gc_fullgc_test.cpp203 int cnt = every; in MakeObjectsAlive() local
205 cnt--; in MakeObjectsAlive()
206 if (cnt != 0) { in MakeObjectsAlive()
212 cnt = every; in MakeObjectsAlive()
218 int cnt = every; in MakeObjectsGarbage() local
220 cnt--; in MakeObjectsGarbage()
221 if (cnt != 0) { in MakeObjectsGarbage()
226 cnt = every; in MakeObjectsGarbage()
234 int cnt = every; in MakeObjectsPermAlive() local
236 cnt--; in MakeObjectsPermAlive()
[all …]
Dmem_stats_gen_gc_test.cpp230 int cnt = every; in MakeObjectsAlive() local
232 cnt--; in MakeObjectsAlive()
233 if (cnt != 0) { in MakeObjectsAlive()
239 cnt = every; in MakeObjectsAlive()
245 int cnt = every; in MakeObjectsGarbage() local
247 cnt--; in MakeObjectsGarbage()
248 if (cnt != 0) { in MakeObjectsGarbage()
252 cnt = every; in MakeObjectsGarbage()
260 int cnt = every; in MakeObjectsPermAlive() local
262 cnt--; in MakeObjectsPermAlive()
[all …]
Dcard_table_test.cpp143 size_t cnt = 0; in TEST_F() local
146 cnt++; in TEST_F()
148 ASSERT_EQ(cnt, card_table_->GetCardsCount()); in TEST_F()
Dmonitor_test.cpp264 for (uint64_t cnt = 0; cnt < MarkWord::LIGHT_LOCK_LOCK_MAX_COUNT; cnt++) { in TEST_F() local
/arkcompiler/ets_runtime/ecmascript/compiler/tests/
Dcircuit_optimizer_tests.cpp365 uint32_t cnt = 0; in HWTEST_F_L0() local
369 cnt++; in HWTEST_F_L0()
373 EXPECT_TRUE(cnt == 1); in HWTEST_F_L0()
379 uint32_t cnt = 0; in HWTEST_F_L0() local
383 cnt++; in HWTEST_F_L0()
387 EXPECT_TRUE(cnt == 1); in HWTEST_F_L0()
459 uint32_t cnt = 0; in HWTEST_F_L0() local
463 cnt++; in HWTEST_F_L0()
467 EXPECT_TRUE(cnt == 1); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/compiler/
Dgate.cpp215 size_t cnt = 0; in CheckStateOutput() local
220 cnt++; in CheckStateOutput()
225 cnt++; in CheckStateOutput()
240 if (needCheck && cnt != expected) { in CheckStateOutput()
243 " actual:" + std::to_string(cnt) + ")", -1); in CheckStateOutput()
252 size_t cnt = 0; in CheckBranchOutput() local
259 cnt++; in CheckBranchOutput()
266 cnt++; in CheckBranchOutput()
270 if (setOfOps.size() != cnt) { in CheckBranchOutput()
Dverifier.cpp230 size_t cnt = 0; in RunFixedGatesRelationsCheck() local
235 … (circuit->GetOpCode(circuit->GetIn(fixedGate, 0)) == OpCode::LOOP_BEGIN && cnt == 2)) { in RunFixedGatesRelationsCheck()
236 ASSERT(cnt > 0); in RunFixedGatesRelationsCheck()
239 static_cast<size_t>(cnt - 1))); in RunFixedGatesRelationsCheck()
250 static_cast<size_t>(cnt - 1))); in RunFixedGatesRelationsCheck()
254 cnt++; in RunFixedGatesRelationsCheck()
Dcircuit_optimizer.cpp676 size_t cnt = 0; in RunValueSelector() local
678 if (cnt > 0) { in RunValueSelector()
680 acc_.GetIn(relatedState, cnt - 1)).Implies(valueLatticeMap_(input))); in RunValueSelector()
682 cnt++; in RunValueSelector()
691 size_t cnt = 0; in RunDependSelector() local
693 if (cnt > 0) { in RunDependSelector()
695 acc_.GetIn(relatedState, cnt - 1)).Implies(valueLatticeMap_(input))); in RunDependSelector()
697 cnt++; in RunDependSelector()
Dllvm_ir_builder.cpp875 int cnt = static_cast<int>(bbID2BB_.count(bbIdx)); in VisitPhi() local
876 // if cnt = 0 means bb with current bbIdx hasn't been created in VisitPhi()
877 if (cnt > 0) { in VisitPhi()
/arkcompiler/ets_runtime/ecmascript/
Daot_file_manager.cpp72 uint32_t cnt = GetFuncCount(); in SaveSectionsInfo() local
74 file.write(reinterpret_cast<char *>(&cnt), sizeof(cnt)); in SaveSectionsInfo()
95 uint32_t cnt = 0; in LoadStackMapSection() local
97 parser.ParseBuffer(&cnt, sizeof(cnt)); in LoadStackMapSection()
99 SetFuncCount(cnt); in LoadStackMapSection()
132 uint32_t cnt; in LoadStackMapSection() local
134 file.read(reinterpret_cast<char *>(&cnt), sizeof(cnt)); in LoadStackMapSection()
136 SetFuncCount(cnt); in LoadStackMapSection()
Daot_file_manager.h145 void SetFuncCount(uint32_t cnt) in SetFuncCount()
147 funcCount_ = cnt; in SetFuncCount()
/arkcompiler/toolchain/build/prebuilts_download/
Dprebuilts_download.py120 cnt = cpu_count()
122 cnt = 1
124 with ThreadPoolExecutor(max_workers=cnt) as pool:
/arkcompiler/runtime_core/tests/cts-generator/cts-template/
Dinitobj.short.yaml3589 i32 cnt <static>
3592 ldstatic R.cnt
3594 ststatic R.cnt
3598 ldstatic R.cnt
3600 ststatic R.cnt
3606 ldstatic R.cnt
3626 i32 cnt <static>
3629 ldstatic R.cnt
3631 ststatic R.cnt
3635 ldstatic R.cnt
[all …]
Dinitobj.yaml3813 i32 cnt <static>
3816 ldstatic R.cnt
3818 ststatic R.cnt
3822 ldstatic R.cnt
3824 ststatic R.cnt
3830 ldstatic R.cnt
3850 i32 cnt <static>
3853 ldstatic R.cnt
3855 ststatic R.cnt
3859 ldstatic R.cnt
[all …]
Dinitobj.range.yaml4075 i32 cnt <static>
4078 ldstatic R.cnt
4080 ststatic R.cnt
4084 ldstatic R.cnt
4086 ststatic R.cnt
4093 ldstatic R.cnt
4113 i32 cnt <static>
4116 ldstatic R.cnt
4118 ststatic R.cnt
4122 ldstatic R.cnt
[all …]
/arkcompiler/runtime_core/libpandafile/tests/
Ddebug_info_extractor_test.cpp391 auto &cnt = extractor.GetColumnNumberTable(method_id); variable
392 for (auto const &col : cnt) {
/arkcompiler/runtime_core/runtime/mem/gc/gen-gc/
Dgen-gc.cpp392 LOG_DEBUG_GC << "process moved objects cnt = " << std::dec << moved_objects->size(); in UpdateRefsToMovedObjects()
/arkcompiler/runtime_core/compiler/optimizer/code_generator/target/aarch64/
Dencode.cpp568 GetMasm()->Cnt(tmp_reg.V8B(), tmp_reg.V8B()); in EncodeBitCount()
591 auto cnt = (dst.GetId() == src1.GetId() ? tmp : dst); in EncodeRotate() local
592 auto count = (dst.GetSize() == WORD_SIZE ? VixlReg(cnt).W() : VixlReg(cnt).X()); in EncodeRotate()