Home
last modified time | relevance | path

Searched refs:ch2 (Results 1 – 2 of 2) sorted by relevance

/arkcompiler/runtime_core/libpandabase/utils/
Dutf.cpp114 auto ch2 = static_cast<uint8_t>(MUTF8_3B_THIRD | (d0 & MASK_6BIT)); in ConvertUtf16ToMUtf8() local
115 return {CONST_3, {ch0, ch1, ch2}}; in ConvertUtf16ToMUtf8()
132 auto ch2 = static_cast<uint8_t>(MUTF8_3B_THIRD | (d0 & MASK_6BIT)); in ConvertUtf16ToMUtf8() local
133 return {CONST_3, {ch0, ch1, ch2}}; in ConvertUtf16ToMUtf8()
140 auto ch2 = static_cast<uint8_t>(((codePoint >> DATA_WIDTH) & MASK_6BIT) | MASK1); in ConvertUtf16ToMUtf8() local
143 return {CONST_4, {ch0, ch1, ch2, ch3}}; in ConvertUtf16ToMUtf8()
/arkcompiler/ets_runtime/ecmascript/base/
Dutf_helper.cpp135 auto ch2 = static_cast<uint8_t>(UTF8_3B_THIRD | (d0 & utf::MASK_6BIT)); in ConvertUtf16ToUtf8() local
136 return {UtfLength::THREE, {ch0, ch1, ch2}}; in ConvertUtf16ToUtf8()
161 auto ch2 = static_cast<uint8_t>(UTF8_3B_THIRD | (d0 & utf::MASK_6BIT)); in ConvertUtf16ToUtf8() local
162 return {UtfLength::THREE, {ch0, ch1, ch2}}; in ConvertUtf16ToUtf8()
174 auto ch2 = static_cast<uint8_t>(((codePoint >> UtfOffset::SIX) & utf::MASK_6BIT) | utf::MASK1); in ConvertUtf16ToUtf8() local
176 return {UtfLength::FOUR, {ch0, ch1, ch2, ch3}}; in ConvertUtf16ToUtf8()