Home
last modified time | relevance | path

Searched refs:glyph (Results 1 – 3 of 3) sorted by relevance

/drivers/tty/vt/
Dconsolemap.c201 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(struct vc_data *conp, int glyph, int use_unicode) in inverse_translate() argument
[all …]
Dvt.c534 u16 glyph = scr_readw(p++) & mask; in vc_uniscr_check() local
535 line[x] = inverse_translate(vc, glyph, true); in vc_uniscr_check()
578 u16 glyph = scr_readw(p++) & mask; in vc_uniscr_copy_line() local
579 *uni_buf++ = inverse_translate(vc, glyph, true); in vc_uniscr_copy_line()
605 u16 glyph = scr_readw(p++) & mask; in vc_uniscr_debug_check() local
612 if (tc != glyph) in vc_uniscr_debug_check()
615 __func__, x, y, glyph, tc); in vc_uniscr_debug_check()
/drivers/accessibility/braille/
Dbraille_console.c132 u16 glyph = screen_glyph(vc, in vc_refresh() local
134 buf[i] = inverse_translate(vc, glyph, 1); in vc_refresh()