Home | History | Annotate | Download | only in vm

Lines Matching refs:uic

145         unsigned int uic = *utf16Str++;
148 * The most common case is (uic > 0 && uic <= 0x7f).
150 if (uic == 0 || uic > 0x7f) {
151 if (uic > 0x07ff)
153 else /*(uic > 0x7f || uic == 0) */
172 unsigned int uic = *utf16Str++;
175 * The most common case is (uic > 0 && uic <= 0x7f).
177 if (uic == 0 || uic > 0x7f) {
178 if (uic > 0x07ff) {
179 *utf8Str++ = (uic >> 12) | 0xe0;
180 *utf8Str++ = ((uic >> 6) & 0x3f) | 0x80;
181 *utf8Str++ = (uic & 0x3f) | 0x80;
182 } else /*(uic > 0x7f || uic == 0)*/ {
183 *utf8Str++ = (uic >> 6) | 0xc0;
184 *utf8Str++ = (uic & 0x3f) | 0x80;
187 *utf8Str++ = uic;