Home
last modified time | relevance | path

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

/system/core/libcutils/
Dstrdup16to8.cpp60 unsigned int uic = *utf16Str++; in strnlen16to8() local
62 if (uic > 0x07ff) in strnlen16to8()
64 else if (uic > 0x7f || uic == 0) in strnlen16to8()
75 unsigned int uic = *utf16Str++; in strnlen16to8() local
78 if (uic > 0x07ff) in strnlen16to8()
80 else if (uic > 0x7f || uic == 0) in strnlen16to8()
119 unsigned int uic = *utf16Str++; in strncpy16to8() local
121 if (uic > 0x07ff) { in strncpy16to8()
122 *utf8cur++ = (uic >> 12) | 0xe0; in strncpy16to8()
123 *utf8cur++ = ((uic >> 6) & 0x3f) | 0x80; in strncpy16to8()
[all …]