Home
last modified time | relevance | path

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

/system/core/libutils/
DUnicode.cpp89 static inline void utf32_codepoint_to_utf8(uint8_t* dstP, char32_t srcChar, size_t bytes) in utf32_codepoint_to_utf8() argument
91 dstP += bytes; in utf32_codepoint_to_utf8()
94 case 4: *--dstP = (uint8_t)((srcChar | kByteMark) & kByteMask); srcChar >>= 6; in utf32_codepoint_to_utf8()
96 case 3: *--dstP = (uint8_t)((srcChar | kByteMark) & kByteMask); srcChar >>= 6; in utf32_codepoint_to_utf8()
98 case 2: *--dstP = (uint8_t)((srcChar | kByteMark) & kByteMask); srcChar >>= 6; in utf32_codepoint_to_utf8()
100 case 1: *--dstP = (uint8_t)(srcChar | kFirstByteMark[bytes]); in utf32_codepoint_to_utf8()