Home
last modified time | relevance | path

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

/arkcompiler/runtime_core/libpandabase/utils/
Dutf.cpp87 …uint32_t code_point = ((d0 & MASK_4BIT) << (DATA_WIDTH * CONST_3)) | ((d1 & MASK_6BIT) << (DATA_WI… in ConvertMUtf8ToUtf16Pair() local
91 pair |= ((code_point >> (PAIR_ELEMENT_WIDTH - DATA_WIDTH)) + U16_LEAD) & MASK_16BIT; in ConvertMUtf8ToUtf16Pair()
93 pair |= (code_point & MASK_10BIT) + U16_TAIL; in ConvertMUtf8ToUtf16Pair()