Home
last modified time | relevance | path

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

/system/core/libcutils/
Dstrdup16to8.c59 unsigned int uic = *utf16Str++; in strnlen16to8() local
61 if (uic > 0x07ff) in strnlen16to8()
63 else if (uic > 0x7f || uic == 0) in strnlen16to8()
73 unsigned int uic = *utf16Str++; in strnlen16to8() local
76 if (uic > 0x07ff) in strnlen16to8()
78 else if (uic > 0x7f || uic == 0) in strnlen16to8()
116 unsigned int uic = *utf16Str++; in strncpy16to8() local
118 if (uic > 0x07ff) { in strncpy16to8()
119 *utf8cur++ = (uic >> 12) | 0xe0; in strncpy16to8()
120 *utf8cur++ = ((uic >> 6) & 0x3f) | 0x80; in strncpy16to8()
[all …]