Searched refs:glyph (Results 1 – 6 of 6) sorted by relevance
/kernel/linux/linux-5.10/drivers/tty/vt/ |
D | consolemap.c | 201 int j, glyph; in set_inverse_transl() local 215 glyph = conv_uni_to_pc(conp, t[j]); in set_inverse_transl() 216 if (glyph >= 0 && glyph < MAX_GLYPH && q[glyph] < 32) { in set_inverse_transl() 218 q[glyph] = j; in set_inverse_transl() 226 int i, j, k, glyph; in set_inverse_trans_unicode() local 249 glyph = p2[k]; in set_inverse_trans_unicode() 250 if (glyph >= 0 && glyph < MAX_GLYPH in set_inverse_trans_unicode() 251 && q[glyph] < 32) in set_inverse_trans_unicode() 252 q[glyph] = (i << 11) + (j << 6) + k; in set_inverse_trans_unicode() 271 u16 inverse_translate(const struct vc_data *conp, int glyph, int use_unicode) in inverse_translate() argument [all …]
|
D | vt.c | 533 u16 glyph = scr_readw(p++) & mask; in vc_uniscr_check() local 534 line[x] = inverse_translate(vc, glyph, true); in vc_uniscr_check() 577 u16 glyph = scr_readw(p++) & mask; in vc_uniscr_copy_line() local 578 *uni_buf++ = inverse_translate(vc, glyph, true); in vc_uniscr_copy_line() 604 u16 glyph = scr_readw(p++) & mask; in vc_uniscr_debug_check() local 611 if (tc != glyph) in vc_uniscr_debug_check() 614 __func__, x, y, glyph, tc); in vc_uniscr_debug_check()
|
/kernel/linux/linux-5.10/include/linux/ |
D | consolemap.h | 20 extern u16 inverse_translate(const struct vc_data *conp, int glyph, 28 #define inverse_translate(conp, glyph, uni) ((uint16_t)glyph) argument
|
/kernel/linux/linux-5.10/drivers/accessibility/braille/ |
D | braille_console.c | 132 u16 glyph = screen_glyph(vc, in vc_refresh() local 134 buf[i] = inverse_translate(vc, glyph, 1); in vc_refresh()
|
/kernel/linux/linux-5.10/Documentation/admin-guide/ |
D | unicode.rst | 122 Several glyph forms for the Klingon alphabet have been proposed.
|
D | devices.txt | 176 0 = /dev/vcs Current vc text (glyph) contents 177 1 = /dev/vcs1 tty1 text (glyph) contents 179 63 = /dev/vcs63 tty63 text (glyph) contents 184 128 = /dev/vcsa Current vc text/attribute (glyph) contents 185 129 = /dev/vcsa1 tty1 text/attribute (glyph) contents 187 191 = /dev/vcsa63 tty63 text/attribute (glyph) contents
|