Home
last modified time | relevance | path

Searched refs:unicode (Results 1 – 25 of 293) sorted by relevance

12345678910>>...12

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/vendor/nunicode/include/libnu/
H A Dutf8.h34 const char* nu_utf8_read(const char *utf8, uint32_t *unicode) { in nu_utf8_read() argument
39 if (unicode != 0) { in nu_utf8_read()
40 utf8_2b(utf8, unicode); in nu_utf8_read()
45 if (unicode != 0) { in nu_utf8_read()
46 utf8_3b(utf8, unicode); in nu_utf8_read()
51 if (unicode != 0) { in nu_utf8_read()
52 utf8_4b(utf8, unicode); in nu_utf8_read()
57 else if (unicode != 0) { in nu_utf8_read()
58 *unicode = c; in nu_utf8_read()
79 const char* nu_utf8_revread(uint32_t *unicode, const char *utf8) { in nu_utf8_revread() argument
[all …]
H A Dstrcoll_internal.h27 uint32_t *unicode, const char **tail);
72 nu_read_iterator_t encoded_read, uint32_t *unicode, in nu_default_compound_read() argument
77 return encoded_read(encoded, unicode); in nu_default_compound_read()
94 nu_read_iterator_t encoded_read, uint32_t *unicode, in nu_nocase_compound_read() argument
99 *tail = nu_casemap_read(*tail, unicode); in nu_nocase_compound_read()
101 if (*unicode != 0) { in nu_nocase_compound_read()
109 *unicode = 0; in nu_nocase_compound_read()
113 const char *p = encoded_read(encoded, unicode); in nu_nocase_compound_read()
115 if (*unicode == 0) { in nu_nocase_compound_read()
119 const char *map = NU_FOLDING_FUNCTION(*unicode); in nu_nocase_compound_read()
[all …]
H A Dstrings.h38 typedef const char* (*nu_read_iterator_t)(const char *encoded, uint32_t *unicode);
48 typedef const char* (*nu_revread_iterator_t)(uint32_t *unicode, const char *encoded);
55 typedef char* (*nu_write_iterator_t)(uint32_t unicode, char *encoded);
105 ssize_t nu_bytelen(const uint32_t *unicode, nu_write_iterator_t it);
133 ssize_t nu_bytenlen(const uint32_t *unicode, size_t max_len,
/OK3568_Linux_fs/kernel/drivers/tty/vt/
H A Dselection.c67 sel_pos(int n, bool unicode) in sel_pos() argument
69 if (unicode) in sel_pos()
188 static int vc_selection_store_chars(struct vc_data *vc, bool unicode) in vc_selection_store_chars() argument
195 bp = kmalloc_array((vc_sel.end - vc_sel.start) / 2 + 1, unicode ? 4 : 1, in vc_selection_store_chars()
207 u32 c = sel_pos(i, unicode); in vc_selection_store_chars()
208 if (unicode) in vc_selection_store_chars()
233 bool unicode = vt_do_kdgkbmode(fg_console) == K_UNICODE; in vc_do_selection() local
241 spc = isspace(sel_pos(ps, unicode)); in vc_do_selection()
243 if ((spc && !isspace(sel_pos(ps, unicode))) || in vc_do_selection()
244 (!spc && !inword(sel_pos(ps, unicode)))) in vc_do_selection()
[all …]
H A Dconsolemap.c475 con_insert_unipair(struct uni_pagedir *p, u_short unicode, u_short fontpos) in con_insert_unipair() argument
480 p1 = p->uni_pgdir[n = unicode >> 11]; in con_insert_unipair()
489 p2 = p1[n = (unicode >> 6) & 0x1f]; in con_insert_unipair()
496 p2[unicode & 0x3f] = fontpos; in con_insert_unipair()
498 p->sum += (fontpos << 20U) + unicode; in con_insert_unipair()
627 err1 = con_insert_unipair(p, plist->unicode, plist->fontpos); in con_set_unimap()
765 unilist[ect].unicode = in con_get_unimap()
/OK3568_Linux_fs/kernel/fs/unicode/
H A DREADME.utf8data6 http://www.unicode.org/Public/12.1.0/ucd/
10 https://www.unicode.org/Public/12.1.0/ucd/CaseFolding.txt
11 https://www.unicode.org/Public/12.1.0/ucd/DerivedAge.txt
12 https://www.unicode.org/Public/12.1.0/ucd/extracted/DerivedCombiningClass.txt
13 https://www.unicode.org/Public/12.1.0/ucd/DerivedCoreProperties.txt
14 https://www.unicode.org/Public/12.1.0/ucd/NormalizationCorrections.txt
15 https://www.unicode.org/Public/12.1.0/ucd/NormalizationTest.txt
16 https://www.unicode.org/Public/12.1.0/ucd/UnicodeData.txt
42 http://www.unicode.org/Public/UCD/latest/
44 Then, build under fs/unicode/ with REGENERATE_UTF8DATA=1:
[all …]
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-support/unicode-ucd/
H A Dunicode-ucd_14.0.0.bb2 HOMEPAGE = "https://unicode.org/ucd/"
7 …https://www.unicode.org/Public/zipped/${PV}/UCD.zip;name=ucd;subdir=ucd;downloadfilename=unicode-u…
8 https://www.unicode.org/license.html;name=license \
18 install -d ${D}${datadir}/unicode
19 cp -rf ${WORKDIR}/ucd ${D}${datadir}/unicode
22 FILES:${PN} = "${datadir}/unicode/ucd"
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/vendor/nunicode/src/libnu/
H A Dutf8.c82 char* nu_utf8_write(uint32_t unicode, char *utf8) { in nu_utf8_write() argument
83 unsigned codepoint_len = utf8_codepoint_length(unicode); in nu_utf8_write()
87 case 1: *utf8 = (char)(unicode); break; in nu_utf8_write()
88 case 2: b2_utf8(unicode, utf8); break; in nu_utf8_write()
89 case 3: b3_utf8(unicode, utf8); break; in nu_utf8_write()
90 default: b4_utf8(unicode, utf8); break; /* len == 4 */ in nu_utf8_write()
H A Dstrings.c24 static ssize_t _nu_bytelen(const uint32_t *unicode, const uint32_t *limit, nu_write_iterator_t it) { in _nu_bytelen() argument
27 const uint32_t *p = unicode; in _nu_bytelen()
69 ssize_t nu_bytelen(const uint32_t *unicode, nu_write_iterator_t it) { in nu_bytelen() argument
70 return _nu_bytelen(unicode, NU_UNLIMITED, it); in nu_bytelen()
85 ssize_t nu_bytenlen(const uint32_t *unicode, size_t max_len, nu_write_iterator_t it) { in nu_bytenlen() argument
86 return _nu_bytelen(unicode, unicode + max_len, it); in nu_bytenlen()
/OK3568_Linux_fs/yocto/poky/meta/files/common-licenses/
H A DUnicode-DFS-20163unicode.org/Public/, http://www.unicode.org/reports/, http://www.unicode.org/cldr/data/, http://so…
5 Unicode Data Files do not include PDF online code charts under the directory http://www.unicode.org…
7unicode.org/Public/, http://www.unicode.org/reports/, http://www.unicode.org/cldr/data/, http://so…
13 …c. All rights reserved. Distributed under the Terms of Use in http://www.unicode.org/copyright.htm…
H A DUnicode-DFS-20153unicode.org/Public/, http://www.unicode.org/reports/, and http://www.unicode.org/cldr/data/. Unico…
9 …c. All rights reserved. Distributed under the Terms of Use in http://www.unicode.org/copyright.htm…
/OK3568_Linux_fs/kernel/Documentation/input/
H A Dnotifier.rst18 unicode character. value is the unicode value.
20 non-unicode character. value is the keysym.
21 - KBD_POST_KEYSYM events are sent after the treatment of non-unicode keysyms.
39 if (unicode) {
40 param.value = unicode;
43 emit unicode;
/OK3568_Linux_fs/yocto/meta-openembedded/meta-gnome/recipes-support/ibus/
H A Dibus.bb13 # for unicode-ucd
14 EXTRA_OECONF += "--with-ucd-dir=${STAGING_DATADIR}/unicode/ucd"
23 # run native unicode-parser
24 sed -i 's:$(builddir)/unicode-parser:unicode-parser:g' ${S}/src/Makefile.am
H A Dibus-native.bb15 # for allarch unicode-ucd - just to make configure happy
16 EXTRA_OECONF += "--with-ucd-dir=${RECIPE_SYSROOT}${datadir_native}/unicode/ucd"
25 oe_runmake unicode-parser
33 install -m 755 ${S}/src/.libs/unicode-parser ${D}/${bindir}
/OK3568_Linux_fs/yocto/poky/meta/recipes-sato/rxvt-unicode/rxvt-unicode/
H A Dxwc.patch3 diff -ruN rxvt-unicode-9.10-orig//src/screen.C rxvt-unicode-9.10/src/screen.C
4 --- rxvt-unicode-9.10-orig//src/screen.C 2011-04-19 13:34:01.327664984 +0800
5 +++ rxvt-unicode-9.10/src/screen.C 2011-04-19 13:34:47.037665001 +0800
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-support/htop/
H A Dhtop_3.1.2.bb19 unicode \
23 PACKAGECONFIG[unicode] = "--enable-unicode,--disable-unicode"
/OK3568_Linux_fs/buildroot/package/busybox/
H A D0007-Support-bypassing-Unicode-when-printing.patch19 libbb/unicode.c | 10 +++++++++-
57 diff --git a/libbb/unicode.c b/libbb/unicode.c
59 --- a/libbb/unicode.c
60 +++ b/libbb/unicode.c
/OK3568_Linux_fs/kernel/drivers/accessibility/speakup/
H A Dspeakup_soft.c200 loff_t *pos, int unicode) in softsynthx_read() argument
205 size_t bytes_per_ch = unicode ? 3 : 1; in softsynthx_read()
219 if (!unicode) in softsynthx_read()
251 if (!unicode) in softsynthx_read()
259 if ((!unicode && ch < 0x100) || (unicode && ch < 0x80)) { in softsynthx_read()
267 } else if (unicode && ch < 0x800) { in softsynthx_read()
278 } else if (unicode) { in softsynthx_read()
/OK3568_Linux_fs/buildroot/package/pcre/
H A Dpcre.mk17 HOST_PCRE_CONF_OPTS = --enable-unicode-properties
28 PCRE_CONF_OPTS += $(if $(BR2_PACKAGE_PCRE_UCP),--enable-unicode-properties,--disable-unicode-proper…
/OK3568_Linux_fs/kernel/fs/fat/
H A Ddir.c281 wchar_t **unicode, unsigned char *nr_slots) in fat_parse_long() argument
286 if (!*unicode) { in fat_parse_long()
287 *unicode = __getname(); in fat_parse_long()
288 if (!*unicode) { in fat_parse_long()
310 fat16_towchar(*unicode + offset, ds->name0_4, 5); in fat_parse_long()
311 fat16_towchar(*unicode + offset + 5, ds->name5_10, 6); in fat_parse_long()
312 fat16_towchar(*unicode + offset + 11, ds->name11_12, 2); in fat_parse_long()
315 (*unicode)[offset + 13] = 0; in fat_parse_long()
471 wchar_t *unicode = NULL; in fat_search_long() local
490 &unicode, &nr_slots); in fat_search_long()
[all …]
/OK3568_Linux_fs/yocto/poky/meta/recipes-sato/rxvt-unicode/
H A Drxvt-unicode.inc2 SUMMARY = "rxvt terminal clone supporting unicode"
3 DESCRIPTION = "rxvt-unicode is a clone of the well known \
11 SRC_URI = "http://dist.schmorp.de/rxvt-unicode/Attic/rxvt-unicode-${PV}.tar.bz2 \
/OK3568_Linux_fs/kernel/fs/hfsplus/
H A Dunicode.c40 p1 = s1->unicode; in hfsplus_strcasecmp()
41 p2 = s2->unicode; in hfsplus_strcasecmp()
74 p1 = s1->unicode; in hfsplus_strcmp()
75 p2 = s2->unicode; in hfsplus_strcmp()
134 ip = ustr->unicode; in hfsplus_uni2asc()
365 ustr->unicode[outlen++] = cpu_to_be16(*dstr++); in hfsplus_asc2uni()
368 ustr->unicode[outlen++] = cpu_to_be16(c); in hfsplus_asc2uni()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/spirit/home/support/
H A Dcommon_terminals.hpp35 , spirit::char_encoding::unicode
57 struct is_char_encoding<spirit::char_encoding::unicode> : mpl::true_ {};
262 BOOST_SPIRIT_DEFINE_CHAR_CODES(unicode)
264 namespace boost { namespace spirit { namespace tag { namespace unicode namespace
266 BOOST_SPIRIT_TAG_CHAR_SPEC(spirit::char_encoding::unicode)
269 namespace boost { namespace spirit { namespace unicode namespace
272 BOOST_SPIRIT_CHAR_CODE(name, spirit::char_encoding::unicode) \
/OK3568_Linux_fs/yocto/poky/meta/recipes-support/libpcre/
H A Dlibpcre_8.45.bb24 PACKAGECONFIG ??= "pcre8 unicode-properties jit"
30 PACKAGECONFIG[unicode-properties] = "--enable-unicode-properties,--disable-unicode-properties"
/OK3568_Linux_fs/buildroot/package/htop/
H A Dhtop.mk38 HTOP_CONF_OPTS += --enable-unicode
40 HTOP_CONF_OPTS += --disable-unicode

12345678910>>...12