/linux-6.6.21/drivers/tty/vt/ |
D | selection.c | 67 sel_pos(int n, bool unicode) in sel_pos() argument 69 if (unicode) in sel_pos() 189 static int vc_selection_store_chars(struct vc_data *vc, bool unicode) in vc_selection_store_chars() argument 196 bp = kmalloc_array((vc_sel.end - vc_sel.start) / 2 + 1, unicode ? 4 : 1, in vc_selection_store_chars() 208 u32 c = sel_pos(i, unicode); in vc_selection_store_chars() 209 if (unicode) in vc_selection_store_chars() 234 bool unicode = vt_do_kdgkbmode(fg_console) == K_UNICODE; in vc_do_selection() local 242 spc = is_space_on_vt(sel_pos(ps, unicode)); in vc_do_selection() 244 if ((spc && !is_space_on_vt(sel_pos(ps, unicode))) || in vc_do_selection() 245 (!spc && !inword(sel_pos(ps, unicode)))) in vc_do_selection() [all …]
|
D | consolemap.c | 509 con_insert_unipair(struct uni_pagedict *p, u_short unicode, u_short fontpos) in con_insert_unipair() argument 514 n = UNI_DIR(unicode); in con_insert_unipair() 523 n = UNI_ROW(unicode); in con_insert_unipair() 534 row[UNI_GLYPH(unicode)] = fontpos; in con_insert_unipair() 536 p->sum += (fontpos << 20U) + unicode; in con_insert_unipair() 674 err1 = con_insert_unipair(dict, plist->unicode, plist->fontpos); in con_set_unimap() 819 unilist[ect].unicode = UNI(d, r, g); in con_get_unimap()
|
D | conmakehash.c | 22 typedef unsigned short unicode; typedef 45 unicode unitable[MAX_FONTLEN][255];
|
D | Makefile | 33 loadkeys --mktable --unicode $< > $@
|
D | vc_screen.c | 209 static int vcs_size(const struct vc_data *vc, bool attr, bool unicode) in vcs_size() argument 218 if (unicode) in vcs_size() 222 } else if (unicode) in vcs_size()
|
/linux-6.6.21/fs/unicode/ |
D | README.utf8data | 6 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 …]
|
D | Makefile | 4 obj-y += unicode.o 9 unicode-y := utf8-norm.o utf8-core.o
|
/linux-6.6.21/Documentation/input/ |
D | notifier.rst | 19 unicode character. value is the unicode value. 21 non-unicode character. value is the keysym. 22 - KBD_POST_KEYSYM events are sent after the treatment of non-unicode keysyms. 40 if (unicode) { 41 param.value = unicode; 44 emit unicode;
|
/linux-6.6.21/drivers/accessibility/speakup/ |
D | speakup_soft.c | 219 loff_t *pos, int unicode) in softsynthx_read() argument 224 size_t bytes_per_ch = unicode ? 3 : 1; in softsynthx_read() 238 if (!unicode) in softsynthx_read() 270 if (!unicode) in softsynthx_read() 278 if ((!unicode && ch < 0x100) || (unicode && ch < 0x80)) { in softsynthx_read() 286 } else if (unicode && ch < 0x800) { in softsynthx_read() 297 } else if (unicode) { in softsynthx_read()
|
D | synth.c | 54 static void _spk_do_catch_up(struct spk_synth *synth, int unicode) in _spk_do_catch_up() argument 84 if (!unicode) in _spk_do_catch_up() 96 if (unicode) in _spk_do_catch_up()
|
/linux-6.6.21/fs/fat/ |
D | dir.c | 281 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 …]
|
/linux-6.6.21/fs/hfsplus/ |
D | unicode.c | 40 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()
|
D | Makefile | 9 bnode.o brec.o bfind.o tables.o unicode.o wrapper.o bitmap.o part_tbl.o \
|
D | hfsplus_raw.h | 62 hfsplus_unichr unicode[HFSPLUS_MAX_STRLEN]; member 71 hfsplus_unichr unicode[HFSPLUS_ATTR_MAX_STRLEN]; member
|
D | catalog.c | 77 memcpy(key->cat.name.unicode, name->unicode, ustrlen); in hfsplus_cat_build_key_uni() 367 &fd.search_key->cat.name.unicode, in hfsplus_delete_cat()
|
/linux-6.6.21/fs/isofs/ |
D | Kconfig | 25 which allows for long filenames in unicode format (unicode is the 28 <http://www.unicode.org/> for more information). Say Y here if you
|
/linux-6.6.21/Documentation/ABI/testing/ |
D | configfs-usb-gadget | 103 - 1: unicode string 104 - 2: unicode string with environment variable 108 - 6: unicode string with a symbolic link 109 - 7: multiple unicode strings
|
/linux-6.6.21/Documentation/translations/zh_CN/admin-guide/ |
D | unicode.rst | 3 :Original: Documentation/admin-guide/unicode.rst 14 此文档由H. Peter Anvin <unicode@lanana.org>管理,是Linux注册名称与编号管理局 18 http://www.lanana.org/docs/unicode/admin-guide/unicode.rst
|
D | index.rst | 71 unicode
|
/linux-6.6.21/Documentation/translations/zh_TW/admin-guide/ |
D | unicode.rst | 5 :Original: Documentation/admin-guide/unicode.rst 17 此文檔由H. Peter Anvin <unicode@lanana.org>管理,是Linux註冊名稱與編號管理局 21 http://www.lanana.org/docs/unicode/admin-guide/unicode.rst
|
D | index.rst | 69 unicode
|
/linux-6.6.21/fs/udf/ |
D | Makefile | 10 directory.o misc.o udftime.o unicode.o
|
/linux-6.6.21/fs/smb/server/ |
D | Makefile | 7 ksmbd-y := unicode.o auth.o vfs.o vfs_cache.o server.o ndr.o \
|
/linux-6.6.21/include/uapi/linux/ |
D | kd.h | 63 unsigned short unicode; member
|
/linux-6.6.21/Documentation/filesystems/ |
D | hfsplus.rst | 9 blocks, 255-character unicode filenames, and file sizes of 2^63 bytes.
|