Searched refs:uic (Results 1 – 1 of 1) sorted by relevance
60 unsigned int uic = *utf16Str++; in strnlen16to8() local62 if (uic > 0x07ff) in strnlen16to8()64 else if (uic > 0x7f || uic == 0) in strnlen16to8()75 unsigned int uic = *utf16Str++; in strnlen16to8() local78 if (uic > 0x07ff) in strnlen16to8()80 else if (uic > 0x7f || uic == 0) in strnlen16to8()119 unsigned int uic = *utf16Str++; in strncpy16to8() local121 if (uic > 0x07ff) { in strncpy16to8()122 *utf8cur++ = (uic >> 12) | 0xe0; in strncpy16to8()123 *utf8cur++ = ((uic >> 6) & 0x3f) | 0x80; in strncpy16to8()[all …]