Home
last modified time | relevance | path

Searched refs:d0 (Results 1 – 12 of 12) sorted by relevance

/ark/runtime_core/libpandabase/utils/
Dutf.cpp60 uint8_t d0 = sp[0]; in ConvertMUtf8ToUtf16Pair() local
61 if ((d0 & MASK1) == 0) { in ConvertMUtf8ToUtf16Pair()
62 return {d0, 1}; in ConvertMUtf8ToUtf16Pair()
66 return {d0, 1}; in ConvertMUtf8ToUtf16Pair()
69 if ((d0 & MASK2) == 0) { in ConvertMUtf8ToUtf16Pair()
70 return {((d0 & MASK_5BIT) << DATA_WIDTH) | (d1 & MASK_6BIT), 2}; in ConvertMUtf8ToUtf16Pair()
74 return {d0, 1}; in ConvertMUtf8ToUtf16Pair()
77 if ((d0 & MASK3) == 0) { in ConvertMUtf8ToUtf16Pair()
78 …return {((d0 & MASK_4BIT) << (DATA_WIDTH * CONST_2)) | ((d1 & MASK_6BIT) << DATA_WIDTH) | (d2 & MA… in ConvertMUtf8ToUtf16Pair()
83 return {d0, 1}; in ConvertMUtf8ToUtf16Pair()
[all …]
/ark/js_runtime/ecmascript/base/
Dutf_helper.cpp70 Utf8Char ConvertUtf16ToUtf8(uint16_t d0, uint16_t d1, bool modify) in ConvertUtf16ToUtf8() argument
74 if (d1 == 0 && d0 >= utf::HI_SURROGATE_MIN && d0 <= utf::LO_SURROGATE_MAX) { in ConvertUtf16ToUtf8()
75 … auto ch0 = static_cast<uint8_t>(UTF8_3B_FIRST | static_cast<uint8_t>(d0 >> UtfOffset::TWELVE)); in ConvertUtf16ToUtf8()
76 …auto ch1 = static_cast<uint8_t>(UTF8_3B_SECOND | (static_cast<uint8_t>(d0 >> UtfOffset::SIX) & utf… in ConvertUtf16ToUtf8()
77 auto ch2 = static_cast<uint8_t>(UTF8_3B_THIRD | (d0 & utf::MASK_6BIT)); in ConvertUtf16ToUtf8()
81 if (d0 == 0) { in ConvertUtf16ToUtf8()
89 if (d0 <= UTF8_1B_MAX) { in ConvertUtf16ToUtf8()
90 return {UtfLength::ONE, {static_cast<uint8_t>(d0)}}; in ConvertUtf16ToUtf8()
92 if (d0 <= UTF8_2B_MAX) { in ConvertUtf16ToUtf8()
93 auto ch0 = static_cast<uint8_t>(UTF8_2B_FIRST | static_cast<uint8_t>(d0 >> UtfOffset::SIX)); in ConvertUtf16ToUtf8()
[all …]
Dutf_helper.h63 Utf8Char ConvertUtf16ToUtf8(uint16_t d0, uint16_t d1, bool modify);
77 static inline uint32_t CombineTwoU16(uint16_t d0, uint16_t d1) in CombineTwoU16() argument
79 uint32_t codePoint = d0 - utf::HI_SURROGATE_MIN; in CombineTwoU16()
/ark/runtime_core/runtime/bridge/arch/arm/
Dcompiled_code_to_interpreter_bridge_armhf.S78 vpush {d0 - d7}
83 vpop {d0 - d7}
105 vpop {d0 - d7}
109 vpush {d0 - d7}
248 vmov.f64 d0, r4, r5
Dinterpreter_to_compiled_code_bridge_armhf.S42 vldmia \begin_ptr!, {d0}
422 vmoveq.f64 r0, r1, d0
576 vmoveq.f64 r0, r1, d0
/ark/runtime_core/runtime/arch/aarch64/
Dhelpers_aarch64.S43 stp d0, d1, [sp, #-16]!
69 ldp d0, d1, [sp], #16
87 stp d0, d1, [sp, #-16]!
97 ldp d0, d1, [sp], #16
/ark/runtime_core/runtime/tests/arch/arm/
Dinvokation_helper_hf.S48 vldmia r5!, {d0 - d7}
/ark/runtime_core/runtime/bridge/arch/aarch64/
Dcompiled_code_to_interpreter_bridge_aarch64.S121 stp d0, d1, [sp, #-16]!
234 fmov d0, x19
Dinterpreter_to_compiled_code_bridge_aarch64.S31 ldp d1, d0, [\begin_ptr, #-16]!
312 str d0, [x3]
467 fmov x0, d0
/ark/runtime_core/runtime/tests/arch/aarch64/
Dinvokation_helper.S47 ldp d0, d1, [x10], #16
/ark/runtime_core/runtime/tests/
Di2c_bridge_test.cpp924 … int32_t a6, double d0, double d1, double d2, double d3, double d4, double d5U, double d6, in Void7Int8Double() argument
928 …PrintFunc("void", __FUNCTION__, method, a0, a1, a2, a3, a4, a5U, a6, d0, d1, d2, d3, d4, d5U, d6, … in Void7Int8Double()
1091 … int32_t a6, int32_t a7, double d0, double d1, double d2, double d3, double d4, double d5U, in Void8Int9Double() argument
1095 …PrintFunc("void", __FUNCTION__, method, a0, a1, a2, a3, a4, a5U, a6, a7, d0, d1, d2, d3, d4, d5U, … in Void8Int9Double()
/ark/ts2abc/testTs/
Dtest-case.patch12484 +let d0 = new D0();