/arkcompiler/runtime_core/static_core/verification/ |
H A D | verification.rb | 29 d1 = compatibility_checks.domains[d.to_sym] 30 d1.new_enum || d1.existing_enum
|
/arkcompiler/ets_runtime/ecmascript/base/ |
H A D | utf_helper.cpp | 173 Utf8Char ConvertUtf16ToUtf8(uint16_t d0, uint16_t d1, bool modify, bool isWriteBuffer) in ConvertUtf16ToUtf8() argument 177 if (d1 == 0 && d0 >= utf::HI_SURROGATE_MIN && d0 <= utf::LO_SURROGATE_MAX) { in ConvertUtf16ToUtf8() 209 if (d1 < utf::LO_SURROGATE_MIN || d1 > utf::LO_SURROGATE_MAX) { in ConvertUtf16ToUtf8() 215 uint32_t codePoint = CombineTwoU16(d0, d1); in ConvertUtf16ToUtf8() 324 uint8_t d1 = data[1]; // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic) in ConvertUtf8ToUtf16Pair() local 326 return {((d0 & utf::MASK_5BIT) << utf::DATA_WIDTH) | (d1 & utf::MASK_6BIT), UtfLength::TWO}; in ConvertUtf8ToUtf16Pair() 331 return {((d0 & utf::MASK_4BIT) << UtfOffset::TWELVE) | ((d1 & utf::MASK_6BIT) << utf::DATA_WIDTH) | in ConvertUtf8ToUtf16Pair() 337 uint32_t codePoint = ((d0 & utf::MASK_4BIT) << UtfOffset::EIGHTEEN) | ((d1 & utf::MASK_6BIT) << UtfOffset::TWELVE) | in ConvertUtf8ToUtf16Pair() 508 uint8_t d1 in ConvertUtf8ToUnicodeChar() local [all...] |
H A D | utf_helper.h | 111 Utf8Char ConvertUtf16ToUtf8(uint16_t d0, uint16_t d1, bool modify, bool isWriteBuffer = false); 133 static inline uint32_t CombineTwoU16(uint16_t d0, uint16_t d1) in CombineTwoU16() argument 137 codePoint |= d1 - utf::LO_SURROGATE_MIN; in CombineTwoU16()
|
/arkcompiler/runtime_core/static_core/libpandabase/utils/ |
H A D | utf.cpp | 63 uint8_t d1 = sp[1]; in ConvertMUtf8ToUtf16Pair() local 65 return {((d0 & MASK_5BIT) << DATA_WIDTH) | (d1 & MASK_6BIT), 2}; in ConvertMUtf8ToUtf16Pair() 73 return {((d0 & MASK_4BIT) << (DATA_WIDTH * CONST_2)) | ((d1 & MASK_6BIT) << DATA_WIDTH) | (d2 & MASK_6BIT), in ConvertMUtf8ToUtf16Pair() 81 uint32_t codePoint = ((d0 & MASK_4BIT) << (DATA_WIDTH * CONST_3)) | ((d1 & MASK_6BIT) << (DATA_WIDTH * CONST_2)) | in ConvertMUtf8ToUtf16Pair() 92 static constexpr uint32_t CombineTwoU16(uint16_t d0, uint16_t d1) in CombineTwoU16() argument 96 codePoint |= d1 - DECODE_TRAIL_LOW; // NOLINT(hicpp-signed-bitwise in CombineTwoU16() 415 Utf8Char ConvertUtf16ToUtf8(uint16_t d0, uint16_t d1, bool modify) in ConvertUtf16ToUtf8() argument 419 if (d1 == 0 && d0 >= DECODE_LEAD_LOW && d0 <= DECODE_TRAIL_HIGH) { in ConvertUtf16ToUtf8() 448 if (d1 < DECODE_TRAIL_LOW || d1 > DECODE_TRAIL_HIG in ConvertUtf16ToUtf8() 541 uint8_t d1 = data[1]; // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic) ConvertUtf8ToUtf16Pair() local [all...] |
H A D | utf.h | 132 PANDA_PUBLIC_API Utf8Char ConvertUtf16ToUtf8(uint16_t d0, uint16_t d1, bool modify); 169 inline Utf8Char ConvertUtf16ToMUtf8(uint16_t d0, uint16_t d1) in ConvertUtf16ToMUtf8() argument 171 return ConvertUtf16ToUtf8(d0, d1, true); in ConvertUtf16ToMUtf8()
|
/arkcompiler/runtime_core/libpandabase/utils/ |
H A D | utf.cpp | 69 uint8_t d1 = sp[1]; in ConvertMUtf8ToUtf16Pair() local 71 return {((d0 & MASK_5BIT) << DATA_WIDTH) | (d1 & MASK_6BIT), 2}; in ConvertMUtf8ToUtf16Pair() 79 return {((d0 & MASK_4BIT) << (DATA_WIDTH * CONST_2)) | ((d1 & MASK_6BIT) << DATA_WIDTH) | (d2 & MASK_6BIT), in ConvertMUtf8ToUtf16Pair() 87 uint32_t code_point = ((d0 & MASK_4BIT) << (DATA_WIDTH * CONST_3)) | ((d1 & MASK_6BIT) << (DATA_WIDTH * CONST_2)) | in ConvertMUtf8ToUtf16Pair() 98 static constexpr uint32_t CombineTwoU16(uint16_t d0, uint16_t d1) in CombineTwoU16() argument 102 codePoint |= d1 - LO_SURROGATE_MIN; in CombineTwoU16() 107 constexpr MUtf8Char ConvertUtf16ToMUtf8(uint16_t d0, uint16_t d1) in ConvertUtf16ToMUtf8() argument 111 if (d1 == 0 && d0 >= HI_SURROGATE_MIN && d0 <= LO_SURROGATE_MAX) { in ConvertUtf16ToMUtf8() 136 uint32_t codePoint = CombineTwoU16(d0, d1); in ConvertUtf16ToMUtf8()
|
/arkcompiler/runtime_core/static_core/runtime/arch/aarch64/ |
H A D | helpers_aarch64.S | 43 stp d0, d1, [sp, #-16]! 69 ldp d0, d1, [sp], #16 87 stp d0, d1, [sp, #-16]! 97 ldp d0, d1, [sp], #16
|
H A D | osr_aarch64.S | 55 ldp d0, d1, [x16], #16
|
/arkcompiler/ets_frontend/ets2panda/test/parser/js/ |
H A D | test-var-decl.js | 21 var d1, d2, variable
|
/arkcompiler/ets_frontend/es2panda/test/parser/js/ |
H A D | test-var-decl.js | 21 var d1, d2, variable
|
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/napi/arch/arm64/ |
H A D | ets_napi_entry_point_aarch64.S | 68 stp d0, d1, [sp, #-16]! 107 ldp d0, d1, [sp], #16 149 ldp d0, d1, [x12] 224 // | | | d1 | 24 242 // | | | Napi d1 | 40 319 stp d0, d1, [sp, #-16]! 368 ldp d0, d1, [lr], #16 471 ldp d0, d1, [x12]
|
H A D | ets_async_entry_point_aarch64.S | 78 stp d0, d1, [sp, #-16]! 139 ldp d0, d1, [x12]
|
/arkcompiler/toolchain/tooling/test/testcases/js/ |
H A D | export_variable_second.js | 32 var d1 = 100;
|
/arkcompiler/runtime_core/static_core/tests/vm-benchmarks/src/vmb/ |
H A D | doclet.py | 128 for d1, d2 in combinations(Doclet.exclusive_doclets(), 2): 130 if sorted((d1, d2)) == [Doclet.BENCHMARK, Doclet.STATE]: 132 if doclet_names.count(d1.value) > 0 and \ 135 f'@{d1.value} and @{d2.value} doclets in same comment')
|
/arkcompiler/runtime_core/static_core/runtime/tests/arch/aarch64/ |
H A D | invokation_helper.S | 47 ldp d0, d1, [x10], #16
|
/arkcompiler/ets_runtime/test/moduletest/string/ |
H A D | string.js | 113 var d1 = a1.split(" "); variable 122 print(d1);
|
/arkcompiler/runtime_core/static_core/runtime/bridge/arch/aarch64/ |
H A D | compiled_code_to_interpreter_bridge_aarch64.S | 122 stp d0, d1, [sp, #-16]!
|
H A D | interpreter_to_compiled_code_bridge_aarch64.S | 31 ldp d1, d0, [\begin_ptr, #-16]!
|
/arkcompiler/ets_runtime/ecmascript/base/tests/ |
H A D | number_helper_test.cpp | 148 double d1 = 5562684646268003; in HWTEST_F_L0() local 149 JSHandle<EcmaString> resultJSHandle1 = NumberHelper::DoubleToEcmaString(thread, d1); in HWTEST_F_L0() 709 int64_t d1 = NumberHelper::DoubleToInt64(static_cast<double>(std::numeric_limits<int64_t>::max())); in HWTEST_F_L0() local 710 EXPECT_EQ(d1, std::numeric_limits<int64_t>::max()); in HWTEST_F_L0()
|
/arkcompiler/runtime_core/static_core/runtime/tests/ |
H A D | i2c_bridge_test.cpp | 915 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 D | interpreter_to_compiled_code_bridge_armhf.S | 45 vldmia \begin_ptr!, {d1}
|
H A D | compiled_code_to_runtime_bridge_arm.S | 109 vldmdb \tmp_reg!, {d1-d7}
|
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/target/aarch32/ |
H A D | encode.cpp | 1922 GetMasm()->Vmov(vixl::aarch32::d1, VixlVReg(tmp)); in MakeLibCallWithDoubleResult() 1925 GetMasm()->Vmov(vixl::aarch32::d1, VixlVReg(src1)); in MakeLibCallWithDoubleResult() 1928 auto dstRegister = secondValue ? vixl::aarch32::d1 : vixl::aarch32::d0; in MakeLibCallWithDoubleResult() 1930 if (dst.GetId() <= vixl::aarch32::d1.GetCode()) { in MakeLibCallWithDoubleResult()
|
/arkcompiler/ets_runtime/ecmascript/napi/test/ |
H A D | jsnapi_sample.cpp | 1344 * let d1: Derive; 1347 * d1 = new Derive(5);//新建基类。 1350 * let i1:number = d1.Compute(); 1659 * let d1: Derive; 1662 * d1 = new Derive(5);//新建基类。 1665 * let i1:number = d1.Compute(); 1679 Local<Derive> d1 = Derive::New(vm_, NumberRef::New(vm_, num)); in HWTEST_F_L0() local 1683 Local<NumberRef> i1 = Derive::Compute(vm_, d1); in HWTEST_F_L0()
|
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/target/aarch64/ |
H A D | encode.cpp | 3030 if (src0.GetId() != vixl::aarch64::d0.GetCode() || src1.GetId() != vixl::aarch64::d1.GetCode()) { in MakeLibCall() 3035 GetMasm()->Fmov(vixl::aarch64::d1, VixlVReg(tmp)); in MakeLibCall()
|