Home
last modified time | relevance | path

Searched refs:t1 (Results 1 - 25 of 31) sorted by relevance

12

/arkcompiler/runtime_core/static_core/libpandabase/tests/genmc/
H A Dcondvar_test_3.cpp69 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 Dcondvar_test_2.cpp64 pthread_t t1; in main() local
68 pthread_create(&t1, nullptr, Thread1, nullptr); in main()
72 pthread_join(t1, nullptr); in main()
H A Dcondvar_test_1.cpp66 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 Ddefinefunc.js16 function t1() { function
23 let f = t1();
/arkcompiler/runtime_core/libpandafile/
H A Ddata_protect.h52 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 Dreport.py126 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 Dserializer_test.cpp1041 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 Dobjoperate.js23 var t1 = JSON.stringify(a);
25 if (t1 == t2) {
/arkcompiler/ets_runtime/ecmascript/tests/
H A Decma_vm_test.cpp42 std::thread t1([&]() { in HWTEST_F_L0()
90 t1.join(); in HWTEST_F_L0()
H A Djs_thread_state_test.cpp70 std::thread t1([&]() { in CreateNewVMInSeparateThread()
90 t1.join(); in CreateNewVMInSeparateThread()
/arkcompiler/runtime_core/libpandabase/tests/
H A Dmutex_test.cpp133 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 DetsUnionType.cpp236 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 Dsnapshot_test.cpp83 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 Dgenerational-gc-base-inl.h71 ScopedTiming t1("VisitInternalStringTable", *this->GetTiming()); in MarkImpl()
/arkcompiler/ets_runtime/test/moduletest/regexp/
H A Dregexp.js320 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 Djs_pandafile_manager_test.cpp163 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 Dencode.cpp2542 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 Dbytecode_emitter_tests.cpp285 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 Djsnapi_third_tests.cpp378 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 Djsnapi_first_tests.cpp1491 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 Dbytecode_emitter_tests.cpp288 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 Dencoder64_test_1.cpp224 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 Dencoder32_test_1.cpp242 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 Dencoder64_test_1.cpp225 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 Dgen-gc.cpp506 ScopedTiming t1("VisitInternalStringTable", *this->GetTiming()); in ReMark()

Completed in 32 milliseconds

12