Home
last modified time | relevance | path

Searched refs:srcChar (Results 1 - 1 of 1) sorted by relevance

/commonlibrary/c_utils/base/src/
H A Dunicode_ex.cpp76 void Utf32CodePointToUtf8(uint8_t* dstP, char32_t srcChar, size_t bytes) in Utf32CodePointToUtf8() argument
80 *--dstP = static_cast<uint8_t>((srcChar | UTF8_BYTE_MARK) & UTF8_BYTE_MASK); in Utf32CodePointToUtf8()
81 srcChar >>= UTF8_OFFSET; in Utf32CodePointToUtf8()
85 *--dstP = static_cast<uint8_t>((srcChar | UTF8_BYTE_MARK) & UTF8_BYTE_MASK); in Utf32CodePointToUtf8()
86 srcChar >>= UTF8_OFFSET; in Utf32CodePointToUtf8()
90 *--dstP = static_cast<uint8_t>((srcChar | UTF8_BYTE_MARK) & UTF8_BYTE_MASK); in Utf32CodePointToUtf8()
91 srcChar >>= UTF8_OFFSET; in Utf32CodePointToUtf8()
95 *--dstP = static_cast<uint8_t>(srcChar | UTF8_FIRST_BYTE_MARK[bytes]); in Utf32CodePointToUtf8()
99 size_t Utf32CodePointUtf8Length(char32_t srcChar) in Utf32CodePointUtf8Length() argument
101 if (srcChar < ONE_BYTE_UTF in Utf32CodePointUtf8Length()
[all...]

Completed in 1 milliseconds