Home
last modified time | relevance | path

Searched refs:d2 (Results 1 - 18 of 18) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/pgo_profiler/tests/pgo_test_case/
H A Dop_type_test.js38 const d2 = dx * dx;
39 const mag = dt / (d2 * sqrt(d2));
/arkcompiler/runtime_core/static_core/runtime/arch/aarch64/
H A Dhelpers_aarch64.S44 stp d2, d3, [sp, #-16]!
68 ldp d2, d3, [sp], #16
88 stp d2, d3, [sp, #-16]!
96 ldp d2, d3, [sp], #16
H A Dosr_aarch64.S56 ldp d2, d3, [x16], #16
/arkcompiler/ets_frontend/ets2panda/test/parser/js/
H A Dtest-var-decl.js21 var d1, d2,
/arkcompiler/ets_frontend/es2panda/test/parser/js/
H A Dtest-var-decl.js21 var d1, d2,
/arkcompiler/ets_runtime/ecmascript/base/
H A Dutf_helper.cpp329 uint8_t d2 = data[UtfLength::TWO]; // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic) in ConvertUtf8ToUtf16Pair() local
332 (d2 & utf::MASK_6BIT), in ConvertUtf8ToUtf16Pair()
338 ((d2 & utf::MASK_6BIT) << utf::DATA_WIDTH) | (d3 & utf::MASK_6BIT); in ConvertUtf8ToUtf16Pair()
520 uint8_t d2 = sp[UtfLength::TWO]; in ConvertUtf8ToUnicodeChar() local
522 if (((d1 & BIT_MASK_2) == BIT_MASK_1) && ((d2 & BIT_MASK_2) == BIT_MASK_1)) { in ConvertUtf8ToUnicodeChar()
524 ((d1 & utf::MASK_6BIT) << utf::DATA_WIDTH) | (d2 & utf::MASK_6BIT), UtfLength::THREE}; in ConvertUtf8ToUnicodeChar()
536 ((d2 & BIT_MASK_2) == BIT_MASK_1) && ((d3 & BIT_MASK_2) == BIT_MASK_1)) { in ConvertUtf8ToUnicodeChar()
538 ((d2 & utf::MASK_6BIT) << utf::DATA_WIDTH) | (d3 & utf::MASK_6BIT), UtfLength::FOUR}; in ConvertUtf8ToUnicodeChar()
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/napi/arch/arm64/
H A Dets_napi_entry_point_aarch64.S67 stp d2, d3, [sp, #-16]!
108 ldp d2, d3, [sp], #16
150 ldp d2, d3, [x12, #8*2]
223 // | e | | d2 | 23
241 // | | | Napi d2 | 39
318 stp d2, d3, [sp, #-16]!
369 ldp d2, d3, [lr], #16
472 ldp d2, d3, [x12, #8*2]
H A Dets_async_entry_point_aarch64.S77 stp d2, d3, [sp, #-16]!
140 ldp d2, d3, [x12, #8*2]
/arkcompiler/runtime_core/static_core/libpandabase/utils/
H A Dutf.cpp71 uint8_t d2 = sp[CONST_2]; in ConvertMUtf8ToUtf16Pair() local
73 return {((d0 & MASK_4BIT) << (DATA_WIDTH * CONST_2)) | ((d1 & MASK_6BIT) << DATA_WIDTH) | (d2 & MASK_6BIT), in ConvertMUtf8ToUtf16Pair()
82 ((d2 & MASK_6BIT) << DATA_WIDTH) | (d3 & MASK_6BIT); in ConvertMUtf8ToUtf16Pair()
546 uint8_t d2 = data[UtfLength::TWO]; // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic) in ConvertUtf8ToUtf16Pair() local
548 return {((d0 & MASK_4BIT) << UtfOffset::TWELVE) | ((d1 & MASK_6BIT) << DATA_WIDTH) | (d2 & MASK_6BIT), in ConvertUtf8ToUtf16Pair()
554 ((d2 & MASK_6BIT) << DATA_WIDTH) | (d3 & MASK_6BIT); in ConvertUtf8ToUtf16Pair()
/arkcompiler/runtime_core/libpandabase/utils/
H A Dutf.cpp77 uint8_t d2 = sp[CONST_2]; in ConvertMUtf8ToUtf16Pair() local
79 return {((d0 & MASK_4BIT) << (DATA_WIDTH * CONST_2)) | ((d1 & MASK_6BIT) << DATA_WIDTH) | (d2 & MASK_6BIT), in ConvertMUtf8ToUtf16Pair()
88 ((d2 & MASK_6BIT) << DATA_WIDTH) | (d3 & MASK_6BIT); in ConvertMUtf8ToUtf16Pair()
/arkcompiler/runtime_core/static_core/tests/vm-benchmarks/src/vmb/
H A Ddoclet.py128 for d1, d2 in combinations(Doclet.exclusive_doclets(), 2):
130 if sorted((d1, d2)) == [Doclet.BENCHMARK, Doclet.STATE]:
133 doclet_names.count(d2.value) > 0:
135 f'@{d1.value} and @{d2.value} doclets in same comment')
/arkcompiler/runtime_core/static_core/runtime/tests/arch/aarch64/
H A Dinvokation_helper.S48 ldp d2, d3, [x10], #16
/arkcompiler/ets_runtime/ecmascript/base/tests/
H A Dnumber_helper_test.cpp154 double d2 = 0.005431; in HWTEST_F_L0() local
155 JSHandle<EcmaString> resultJSHandle2 = NumberHelper::DoubleToEcmaString(thread, d2); in HWTEST_F_L0()
692 double d2 = 0.30000000000000004; in HWTEST_F_L0() local
693 JSHandle<EcmaString> result1 = NumberHelper::NumberToString(thread, JSTaggedValue(d2)); in HWTEST_F_L0()
711 int64_t d2 = NumberHelper::DoubleToInt64(static_cast<double>(std::numeric_limits<int64_t>::min())); in HWTEST_F_L0() local
712 EXPECT_EQ(d2, std::numeric_limits<int64_t>::min()); in HWTEST_F_L0()
/arkcompiler/runtime_core/static_core/runtime/bridge/arch/aarch64/
H A Dcompiled_code_to_interpreter_bridge_aarch64.S121 stp d2, d3, [sp, #-16]!
H A Dinterpreter_to_compiled_code_bridge_aarch64.S32 ldp d3, d2, [\begin_ptr, #-16]!
/arkcompiler/runtime_core/static_core/runtime/tests/
H A Di2c_bridge_test.cpp915 int32_t a6, double d0, double d1, double d2, double d3, double d4, double d5, double d6, in Void7Int8Double()
918 g_gCallResult = PrintFunc("void", __FUNCTION__, method, a0, a1, a2, a3, a4, a5, a6, d0, d1, d2, d3, d4, d5, d6, d7); in Void7Int8Double()
1083 int32_t a6, int32_t a7, double d0, double d1, double d2, double d3, double d4, double d5, in Void8Int9Double()
1087 PrintFunc("void", __FUNCTION__, method, a0, a1, a2, a3, a4, a5, a6, a7, d0, d1, d2, d3, d4, d5, d6, d7, d8); in Void8Int9Double()
914 Void7Int8Double(Method *method, int32_t a0, int32_t a1, int32_t a2, int32_t a3, int32_t a4, int32_t a5, int32_t a6, double d0, double d1, double d2, double d3, double d4, double d5, double d6, double d7) Void7Int8Double() argument
1082 Void8Int9Double(Method *method, int32_t a0, int32_t a1, int32_t a2, int32_t a3, int32_t a4, int32_t a5, int32_t a6, int32_t a7, double d0, double d1, double d2, double d3, double d4, double d5, double d6, double d7, double d8) Void8Int9Double() argument
/arkcompiler/runtime_core/static_core/runtime/bridge/arch/arm/
H A Dinterpreter_to_compiled_code_bridge_armhf.S48 vldmia \begin_ptr!, {d2}
/arkcompiler/ets_runtime/ecmascript/napi/test/
H A Djsnapi_sample.cpp1345 * let d2: Derive;
1348 * d2 = new DeriveDouble(5);//新建子类。
1351 * let i2:number = d2.Compute();
1660 * let d2: Derive;
1663 * d2 = new DeriveDouble(5);//新建子类。
1666 * let i2:number = d2.Compute();
1680 Local<Derive> d2 = DeriveDouble::New(vm_, NumberRef::New(vm_, num)); in HWTEST_F_L0() local
1684 Local<NumberRef> i2 = Derive::Compute(vm_, d2); in HWTEST_F_L0()

Completed in 22 milliseconds