/arkcompiler/runtime_core/static_core/libpandabase/tests/genmc/ |
H A D | condvar_test_3.cpp | 69 pthread_t t1; in main() local 72 pthread_create(&t1, nullptr, Thread1, reinterpret_cast<void *>(3u)); in main() 75 pthread_join(t1, nullptr); in main()
|
H A D | condvar_test_2.cpp | 64 pthread_t t1; in main() local 68 pthread_create(&t1, nullptr, Thread1, nullptr); in main() 72 pthread_join(t1, nullptr); in main()
|
H A D | condvar_test_1.cpp | 66 pthread_t t1; in main() local 69 pthread_create(&t1, nullptr, Thread1, reinterpret_cast<void *>(3u)); in main() 72 pthread_join(t1, nullptr); in main()
|
/arkcompiler/ets_runtime/test/moduletest/definefunc/ |
H A D | definefunc.js | 16 function t1() { function 23 let f = t1();
|
/arkcompiler/runtime_core/libpandafile/ |
H A D | data_protect.h | 52 void *t1 = reinterpret_cast<void*>(pointer); in DataProtectAut() local 55 __asm__ __volatile__("autdb %0, %1":"+r"(t1):"r"(t2):); in DataProtectAut() 57 __asm__ __volatile__("autda %0, %1":"+r"(t1):"r"(t2):); in DataProtectAut() 59 return reinterpret_cast<uintptr_t>(t1); in DataProtectAut() 72 void *t1 = reinterpret_cast<void*>(pointer); in DataProtectPac() local 75 __asm__ __volatile__("pacdb %0, %1":"+r"(t1):"r"(t2):); in DataProtectPac() 77 __asm__ __volatile__("pacda %0, %1":"+r"(t1):"r"(t2):); in DataProtectPac() 79 return reinterpret_cast<uintptr_t>(t1); in DataProtectPac()
|
/arkcompiler/runtime_core/static_core/tests/vm-benchmarks/src/vmb/ |
H A D | report.py | 126 t1, t2 = results1[t], results2[t] 127 status1, status2 = test_passed(t1), test_passed(t2) 136 time_diff = diff_str(t1.mean_time, t2.mean_time) 137 size_diff = diff_str(t1.code_size, t2.code_size) 138 rss_diff = diff_str(t1.mem_bytes, t2.mem_bytes) 142 times1.append(t1.mean_time) 144 sizes1.append(t1.code_size) 146 rss1.append(t1.mem_bytes) 326 def short_title(t1, t2): 327 n1, m1 = split_name(t1) [all...] |
/arkcompiler/ets_runtime/ecmascript/serializer/tests/ |
H A D | serializer_test.cpp | 1041 std::thread t1(&JSDeserializerTest::JSSpecialValueTest, jsDeserializerTest, data.release()); in HWTEST_F_L0() 1043 t1.join(); in HWTEST_F_L0() 1058 std::thread t1(&JSDeserializerTest::LineStringTest, jsDeserializerTest, data.release()); in HWTEST_F_L0() 1061 t1.join(); in HWTEST_F_L0() 1081 std::thread t1(&JSDeserializerTest::TreeStringTest, jsDeserializerTest, data.release()); in HWTEST_F_L0() 1084 t1.join(); in HWTEST_F_L0() 1104 std::thread t1(&JSDeserializerTest::SlicedStringTest, jsDeserializerTest, data.release()); in HWTEST_F_L0() 1107 t1.join(); in HWTEST_F_L0() 1137 std::thread t1(&JSDeserializerTest::JSPlainObjectTest1, jsDeserializerTest, data.release()); in HWTEST_F_L0() 1139 t1 in HWTEST_F_L0() [all...] |
/arkcompiler/ets_runtime/test/moduletest/objoperate/ |
H A D | objoperate.js | 23 var t1 = JSON.stringify(a);
25 if (t1 == t2) {
|
/arkcompiler/ets_runtime/ecmascript/tests/ |
H A D | ecma_vm_test.cpp | 42 std::thread t1([&]() { in HWTEST_F_L0() 90 t1.join(); in HWTEST_F_L0()
|
H A D | js_thread_state_test.cpp | 70 std::thread t1([&]() { in CreateNewVMInSeparateThread() 90 t1.join(); in CreateNewVMInSeparateThread()
|
/arkcompiler/runtime_core/libpandabase/tests/ |
H A D | mutex_test.cpp | 133 pthread_t t1; in HWTEST_F() local 135 pthread_create(&t1, nullptr, TestThread3, reinterpret_cast<void *>(&arg)); in HWTEST_F() 136 pthread_join(t1, nullptr); in HWTEST_F()
|
/arkcompiler/ets_frontend/ets2panda/checker/types/ets/ |
H A D | etsUnionType.cpp | 236 static Type *LargestNumeric(Type *t1, Type *t2) 244 auto v1 = t1->TypeFlags() & ETS_NORMALIZABLE_NUMERIC; 248 return v1 > v2 ? t1 : t2; 251 static std::optional<Type *> TryMergeTypes(TypeRelation *relation, Type *const t1, Type *const t2) 255 if (relation->IsSupertypeOf(t1, t2) || t2 == never) { 256 return t1; 258 if (relation->IsSupertypeOf(t2, t1) || t1 == never) {
|
/arkcompiler/ets_runtime/ecmascript/snapshot/tests/ |
H A D | snapshot_test.cpp | 83 std::thread t1([&]() { in CompatibilityHelper() 97 t1.join(); in CompatibilityHelper() 254 std::thread t1([]() { in HWTEST_F_L0() 262 t1.join(); in HWTEST_F_L0()
|
/arkcompiler/runtime_core/static_core/runtime/mem/gc/ |
H A D | generational-gc-base-inl.h | 71 ScopedTiming t1("VisitInternalStringTable", *this->GetTiming()); in MarkImpl()
|
/arkcompiler/ets_runtime/test/moduletest/regexp/ |
H A D | regexp.js | 320 let t1 = str2.replace(/([A-Z])/g, function(e) { 323 print(t1); 326 print(t1.replace(/([a-z]+)/g, "_xy"));
|
/arkcompiler/ets_runtime/ecmascript/jspandafile/tests/ |
H A D | js_pandafile_manager_test.cpp | 163 std::thread t1([&]() { in HWTEST_F_L0() 176 t1.join(); in HWTEST_F_L0()
|
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/target/amd64/ |
H A D | encode.cpp | 2542 ScopedTmpReg t1(this, src.GetType()); in EncodeRoundToPInfFloat() 2554 GetMasm()->roundss(ArchVReg(t1), ArchVReg(src), asmjit::imm(1)); in EncodeRoundToPInfFloat() 2555 GetMasm()->subss(ArchVReg(t2), ArchVReg(t1)); in EncodeRoundToPInfFloat() 2564 GetMasm()->addss(ArchVReg(t1), ArchVReg(t3)); in EncodeRoundToPInfFloat() 2570 GetMasm()->comiss(ArchVReg(t1), ArchVReg(t2)); in EncodeRoundToPInfFloat() 2575 GetMasm()->cvttss2si(ArchReg(dst), ArchVReg(t1)); in EncodeRoundToPInfFloat() 2581 ScopedTmpReg t1(this, src.GetType()); in EncodeRoundToPInfDouble() 2593 GetMasm()->roundsd(ArchVReg(t1), ArchVReg(src), asmjit::imm(1)); in EncodeRoundToPInfDouble() 2594 GetMasm()->subsd(ArchVReg(t2), ArchVReg(t1)); in EncodeRoundToPInfDouble() 2603 GetMasm()->addsd(ArchVReg(t1), ArchVRe in EncodeRoundToPInfDouble() [all...] |
/arkcompiler/runtime_core/libpandafile/tests/ |
H A D | bytecode_emitter_tests.cpp | 285 for (const auto &t1 : jmps) { in EmitJmpFwdBwd() 286 std::tie(jmp_size1, std::ignore, imm_max1) = t1; in EmitJmpFwdBwd()
|
/arkcompiler/ets_runtime/ecmascript/napi/test/ |
H A D | jsnapi_third_tests.cpp | 378 std::thread t1([&](){ in HWTEST_F_L0() 390 t1.join(); in HWTEST_F_L0() 625 std::thread t1([&]() { in HWTEST_F_L0() 636 t1.join(); in HWTEST_F_L0()
|
H A D | jsnapi_first_tests.cpp | 1491 std::thread t1([&]() { in HWTEST_F_L0() 1501 t1.join(); in HWTEST_F_L0() 2253 std::thread t1([&](){ in HWTEST_F_L0() 2263 t1.join(); in HWTEST_F_L0()
|
/arkcompiler/runtime_core/static_core/libpandafile/tests/ |
H A D | bytecode_emitter_tests.cpp | 288 for (const auto &t1 : jmps) { in EmitJmpFwdBwd() 289 std::tie(jmpSize1, std::ignore, immMax1) = t1; in EmitJmpFwdBwd()
|
/arkcompiler/runtime_core/static_core/compiler/tests/aarch64/ |
H A D | encoder64_test_1.cpp | 224 auto t1 = GetEncoder()->CreateLabel(); in TEST_F() local 231 GetEncoder()->EncodeJump(t1); in TEST_F() 257 GetEncoder()->BindLabel(t1); in TEST_F()
|
/arkcompiler/runtime_core/static_core/compiler/tests/aarch32/ |
H A D | encoder32_test_1.cpp | 242 auto t1 = GetEncoder()->CreateLabel(); in TEST_F() local 249 GetEncoder()->EncodeJump(t1); in TEST_F() 275 GetEncoder()->BindLabel(t1); in TEST_F()
|
/arkcompiler/runtime_core/static_core/compiler/tests/amd64/ |
H A D | encoder64_test_1.cpp | 225 auto t1 = GetEncoder()->CreateLabel(); in TEST_F() local 232 GetEncoder()->EncodeJump(t1); in TEST_F() 258 GetEncoder()->BindLabel(t1); in TEST_F()
|
/arkcompiler/runtime_core/static_core/runtime/mem/gc/gen-gc/ |
H A D | gen-gc.cpp | 506 ScopedTiming t1("VisitInternalStringTable", *this->GetTiming()); in ReMark()
|