Searched refs:uic (Results 1 – 1 of 1) sorted by relevance
59 unsigned int uic = *utf16Str++; in strnlen16to8() local61 if (uic > 0x07ff) in strnlen16to8()63 else if (uic > 0x7f || uic == 0) in strnlen16to8()73 unsigned int uic = *utf16Str++; in strnlen16to8() local76 if (uic > 0x07ff) in strnlen16to8()78 else if (uic > 0x7f || uic == 0) in strnlen16to8()116 unsigned int uic = *utf16Str++; in strncpy16to8() local118 if (uic > 0x07ff) { in strncpy16to8()119 *utf8cur++ = (uic >> 12) | 0xe0; in strncpy16to8()120 *utf8cur++ = ((uic >> 6) & 0x3f) | 0x80; in strncpy16to8()[all …]