Home
last modified time | relevance | path

Searched defs:codePoint (Results 1 – 3 of 3) sorted by relevance

/commonlibrary/ets_utils/js_api_module/buffer/
Dconverter.cpp34 uint32_t codePoint = ((c1 & LOWER_3_BITS_MASK) << (3 * UTF8_VALID_BITS)) | in Utf8ToUtf16BEToData() local
76 uint32_t codePoint = ((c1 & LOWER_4_BITS_MASK) << (2 * UTF8_VALID_BITS)) | in Utf8ToUtf16BE() local
87 uint32_t codePoint = ((c1 & LOWER_5_BITS_MASK) << UTF8_VALID_BITS) | in Utf8ToUtf16BE() local
/commonlibrary/ets_utils/platform/ohos/
Dutil_helper.cpp192 … uint32_t codePoint = ((c1 & LOWER_3_BITS_MASK) << (3 * UTF8_VALID_BITS)) | // 3:multiple in Utf8ToUtf16BE() local
207 … uint32_t codePoint = ((c1 & LOWER_4_BITS_MASK) << (2 * UTF8_VALID_BITS)) | // 2:multiple in Utf8ToUtf16BE() local
215 … uint32_t codePoint = ((c1 & LOWER_5_BITS_MASK) << UTF8_VALID_BITS) | (c2 & LOWER_6_BITS_MASK); in Utf8ToUtf16BE() local
/commonlibrary/c_utils/base/src/
Dunicode_ex.cpp227 static inline void Utf8ShiftAndMask(uint32_t* codePoint, const uint8_t byte) in Utf8ShiftAndMask()