Home
last modified time | relevance | path

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

/commonlibrary/ets_utils/js_api_module/buffer/
Dconverter.cpp51 uint32_t codePoint = ((c1 & LOWER_3_BITS_MASK) << (3 * UTF8_VALID_BITS)) in Utf8ToUtf16BE() 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/c_utils/base/src/
Dunicode_ex.cpp212 static inline void Utf8ShiftAndMask(uint32_t* codePoint, const uint8_t byte) in Utf8ShiftAndMask()