Lines Matching refs:uic
60 unsigned int uic = *utf16Str++; in strnlen16to8() local
62 if (uic > 0x07ff) in strnlen16to8()
64 else if (uic > 0x7f || uic == 0) in strnlen16to8()
75 unsigned int uic = *utf16Str++; in strnlen16to8() local
78 if (uic > 0x07ff) in strnlen16to8()
80 else if (uic > 0x7f || uic == 0) in strnlen16to8()
119 unsigned int uic = *utf16Str++; in strncpy16to8() local
121 if (uic > 0x07ff) { in strncpy16to8()
122 *utf8cur++ = (uic >> 12) | 0xe0; in strncpy16to8()
123 *utf8cur++ = ((uic >> 6) & 0x3f) | 0x80; in strncpy16to8()
124 *utf8cur++ = (uic & 0x3f) | 0x80; in strncpy16to8()
125 } else if (uic > 0x7f || uic == 0) { in strncpy16to8()
126 *utf8cur++ = (uic >> 6) | 0xc0; in strncpy16to8()
127 *utf8cur++ = (uic & 0x3f) | 0x80; in strncpy16to8()
129 *utf8cur++ = uic; in strncpy16to8()
131 if (uic == 0) { in strncpy16to8()