Searched refs:uic (Results 1 – 1 of 1) sorted by relevance
185 unsigned int uic = *utf16Str++; in utf16_utf8ByteLen() local190 if (uic == 0 || uic > 0x7f) { in utf16_utf8ByteLen()191 if (uic > 0x07ff) in utf16_utf8ByteLen()212 unsigned int uic = *utf16Str++; in convertUtf16ToUtf8() local217 if (uic == 0 || uic > 0x7f) { in convertUtf16ToUtf8()218 if (uic > 0x07ff) { in convertUtf16ToUtf8()219 *utf8Str++ = (uic >> 12) | 0xe0; in convertUtf16ToUtf8()220 *utf8Str++ = ((uic >> 6) & 0x3f) | 0x80; in convertUtf16ToUtf8()221 *utf8Str++ = (uic & 0x3f) | 0x80; in convertUtf16ToUtf8()223 *utf8Str++ = (uic >> 6) | 0xc0; in convertUtf16ToUtf8()[all …]