Searched refs:uic (Results 1 – 1 of 1) sorted by relevance
145 unsigned int uic = *utf16Str++; in utf16_utf8ByteLen() local150 if (uic == 0 || uic > 0x7f) { in utf16_utf8ByteLen()151 if (uic > 0x07ff) in utf16_utf8ByteLen()172 unsigned int uic = *utf16Str++; in convertUtf16ToUtf8() local177 if (uic == 0 || uic > 0x7f) { in convertUtf16ToUtf8()178 if (uic > 0x07ff) { in convertUtf16ToUtf8()179 *utf8Str++ = (uic >> 12) | 0xe0; in convertUtf16ToUtf8()180 *utf8Str++ = ((uic >> 6) & 0x3f) | 0x80; in convertUtf16ToUtf8()181 *utf8Str++ = (uic & 0x3f) | 0x80; in convertUtf16ToUtf8()183 *utf8Str++ = (uic >> 6) | 0xc0; in convertUtf16ToUtf8()[all …]