Home
last modified time | relevance | path

Searched refs:charmask (Results 1 – 7 of 7) sorted by relevance

/linux/drivers/video/fbdev/core/
H A Dfbcon_ud.c90 u16 charmask = vc->vc_hi_font_mask ? 0x1ff : 0xff; in ud_putcs_aligned() local
95 src = par->fontbuffer + (scr_readw(s--) & charmask) * cellsize; in ud_putcs_aligned()
123 u16 charmask = vc->vc_hi_font_mask ? 0x1ff : 0xff; in ud_putcs_unaligned() local
130 src = par->fontbuffer + (scr_readw(s--) & charmask) * cellsize; in ud_putcs_unaligned()
255 unsigned short charmask = vc->vc_hi_font_mask ? 0x1ff : 0xff; in ud_cursor() local
271 src = par->fontbuffer + ((c & charmask) * (w * vc->vc_font.height)); in ud_cursor()
H A Dbitblit.c81 u16 charmask = vc->vc_hi_font_mask ? 0x1ff : 0xff; in bit_putcs_aligned() local
87 u16 ch = scr_readw(s++) & charmask; in bit_putcs_aligned()
118 u16 charmask = vc->vc_hi_font_mask ? 0x1ff : 0xff; in bit_putcs_unaligned() local
126 u16 ch = scr_readw(s++) & charmask; in bit_putcs_unaligned()
265 unsigned short charmask = vc->vc_hi_font_mask ? 0x1ff : 0xff; in bit_cursor() local
279 src = vc->vc_font.data + ((c & charmask) * (w * vc->vc_font.height)); in bit_cursor()
H A Dfbcon_ccw.c103 u16 charmask = vc->vc_hi_font_mask ? 0x1ff : 0xff; in ccw_putcs_aligned() local
108 src = par->fontbuffer + (scr_readw(s--) & charmask) * cellsize; in ccw_putcs_aligned()
225 unsigned short charmask = vc->vc_hi_font_mask ? 0x1ff : 0xff; in ccw_cursor() local
240 src = par->fontbuffer + ((c & charmask) * (w * vc->vc_font.width)); in ccw_cursor()
H A Dfbcon_cw.c88 u16 charmask = vc->vc_hi_font_mask ? 0x1ff : 0xff; in cw_putcs_aligned() local
93 src = par->fontbuffer + (scr_readw(s++) & charmask) * cellsize; in cw_putcs_aligned()
208 unsigned short charmask = vc->vc_hi_font_mask ? 0x1ff : 0xff; in cw_cursor() local
223 src = par->fontbuffer + ((c & charmask) * (w * vc->vc_font.width)); in cw_cursor()
H A Dtileblit.c57 unsigned short charmask = vc->vc_hi_font_mask ? 0x1ff : 0xff; in tile_putcs() local
69 blit.indices[i] = (u32)(scr_readw(s++) & charmask); in tile_putcs()
H A Dfbcon.c323 unsigned short charmask = vc->vc_hi_font_mask ? 0x1ff : 0xff; in get_color() local
325 c = vc->vc_video_erase_char & charmask; in get_color()
2234 unsigned short charmask = vc->vc_hi_font_mask ? in fbcon_generic_blank() local
2239 vc->vc_video_erase_char &= charmask; in fbcon_generic_blank()
/linux/drivers/tty/vt/
H A Dvt.c3079 u16 charmask = vc->vc_hi_font_mask ? 0x1ff : 0xff; in vc_get_glyph() local
3081 if (!(glyph & ~charmask)) in vc_get_glyph()
3088 if ((!vc->vc_utf || vc->vc_disp_ctrl || tc < 128) && !(tc & ~charmask)) { in vc_get_glyph()