Searched refs:ucs (Results 1 - 14 of 14) sorted by relevance

/external/syslinux/core/fs/pxe/
H A Dhttp_readdir.c65 uint16_t ucs; member in struct:html_entity
335 unsigned int ucs; local
350 ucs = strtoul(st->entity_buf + 2, NULL, 16);
352 ucs = strtoul(st->entity_buf + 1, NULL, 10);
355 for (ent = entities; ent->ucs; ent++) {
359 ucs = ent->ucs;
361 if (ucs < 32 || ucs >= 0x10ffff)
363 if (ucs >
[all...]
/external/libvterm/src/
H A Dunicode.c3 // ### The following from http://www.cl.cam.ac.uk/~mgk25/ucs/wcwidth.c
67 * Latest version: http://www.cl.cam.ac.uk/~mgk25/ucs/wcwidth.c
132 static int bisearch(wchar_t ucs, const struct interval *table, int max) { argument
136 if (ucs < table[0].first || ucs > table[max].last)
140 if (ucs > table[mid].last)
142 else if (ucs < table[mid].first)
185 static int mk_wcwidth(wchar_t ucs) argument
188 if (ucs == 0)
190 if (ucs < 3
240 mk_wcwidth_cjk(wchar_t ucs) argument
[all...]
/external/python/cpython3/Tools/gdb/
H A Dlibpython.py1201 ucs = int(field_str[i])
1203 if ucs < 0xD800 or ucs >= 0xDC00 or i == field_length:
1204 Py_UNICODEs.append(ucs)
1210 code = (ucs & 0x03FF) << 10
1220 (_unichr(ucs) if ucs <= 0x10ffff else '\ufffd')
1221 for ucs in Py_UNICODEs])
1268 ucs = ch
1277 ucs
[all...]
/external/icu/icu4c/source/test/intltest/
H A Dtfsmalls.cpp247 UnicodeString ucs = "unicode-string"; local
255 ucs,
264 && (ft_arr[3].getType() == Formattable::kString) && (ft_arr[3].getString(temp) == ucs)
H A Dustrtest.cpp1137 static const UChar ucs[]={ 0x68, 0x6d, 0x20, 0 }; local
1138 test1.insert(9, ucs, -1);
1177 test1.setTo(TRUE, ucs, 3);
/external/sfntly/cpp/src/test/tinyxml/
H A Dtinyxmlparser.cpp447 unsigned long ucs = 0; local
467 ucs += mult * (*q - '0');
469 ucs += mult * (*q - 'a' + 10);
471 ucs += mult * (*q - 'A' + 10 );
494 ucs += mult * (*q - '0');
504 ConvertUTF32ToUTF8( ucs, value, length );
508 *value = (char)ucs;
/external/tinyxml/
H A Dtinyxmlparser.cpp428 unsigned long ucs = 0; local
448 ucs += mult * (*q - '0');
450 ucs += mult * (*q - 'a' + 10);
452 ucs += mult * (*q - 'A' + 10 );
475 ucs += mult * (*q - '0');
485 ConvertUTF32ToUTF8( ucs, value, length );
489 *value = (char)ucs;
/external/python/cpython2/Tools/gdb/
H A Dlibpython.py1116 ucs = int(field_str[i])
1118 if ucs < 0xD800 or ucs >= 0xDC00 or i == field_length:
1119 Py_UNICODEs.append(ucs)
1125 code = (ucs & 0x03FF) << 10
1134 result = u''.join([_unichr(ucs) for ucs in Py_UNICODEs])
/external/python/cpython2/Objects/
H A Dunicodeobject.c3119 Py_UCS4 ucs; local
3124 ucs = (((ch & 0x03FF) << 10) | (ch2 & 0x03FF)) + 0x00010000;
3127 *p++ = hexdigit[(ucs >> 28) & 0x0000000F];
3128 *p++ = hexdigit[(ucs >> 24) & 0x0000000F];
3129 *p++ = hexdigit[(ucs >> 20) & 0x0000000F];
3130 *p++ = hexdigit[(ucs >> 16) & 0x0000000F];
3131 *p++ = hexdigit[(ucs >> 12) & 0x0000000F];
3132 *p++ = hexdigit[(ucs >> 8) & 0x0000000F];
3133 *p++ = hexdigit[(ucs >> 4) & 0x0000000F];
3134 *p++ = hexdigit[ucs
[all...]
/external/python/cpython2/Modules/
H A DcPickle.c1356 Py_UCS4 ucs;
1361 ucs = (((ch & 0x03FF) << 10) | (ch2 & 0x03FF)) + 0x00010000;
1364 *p++ = hexdigit[(ucs >> 28) & 0xf];
1365 *p++ = hexdigit[(ucs >> 24) & 0xf];
1366 *p++ = hexdigit[(ucs >> 20) & 0xf];
1367 *p++ = hexdigit[(ucs >> 16) & 0xf];
1368 *p++ = hexdigit[(ucs >> 12) & 0xf];
1369 *p++ = hexdigit[(ucs >> 8) & 0xf];
1370 *p++ = hexdigit[(ucs >> 4) & 0xf];
1371 *p++ = hexdigit[ucs
[all...]
/external/libxkbcommon/xkbcommon/src/
H A Dkeysym-utf.c45 uint16_t ucs; member in struct:codepair
856 return table[mid].ucs;
/external/skia/tools/sk_app/unix/
H A Dkeysym2ucs.c41 unsigned short ucs; member in struct:codepair
842 return keysymtab[mid].ucs;
/external/skqp/tools/sk_app/unix/
H A Dkeysym2ucs.c41 unsigned short ucs; member in struct:codepair
842 return keysymtab[mid].ucs;
/external/python/cpython2/
H A Dconfigure1485 --enable-unicode[=ucs[24]]

Completed in 871 milliseconds