Home
last modified time | relevance | path

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

/linux-3.4.99/drivers/video/console/
Dbitblit.c82 u16 charmask = vc->vc_hi_font_mask ? 0x1ff : 0xff; in bit_putcs_aligned() local
88 charmask)*cellsize; in bit_putcs_aligned()
115 u16 charmask = vc->vc_hi_font_mask ? 0x1ff : 0xff; in bit_putcs_unaligned() local
123 charmask)*cellsize; in bit_putcs_unaligned()
242 unsigned short charmask = vc->vc_hi_font_mask ? 0x1ff : 0xff; in bit_cursor() local
262 src = vc->vc_font.data + ((c & charmask) * (w * vc->vc_font.height)); in bit_cursor()
Dfbcon_ud.c91 u16 charmask = vc->vc_hi_font_mask ? 0x1ff : 0xff; in ud_putcs_aligned() local
96 src = ops->fontbuffer + (scr_readw(s--) & charmask)*cellsize; in ud_putcs_aligned()
124 u16 charmask = vc->vc_hi_font_mask ? 0x1ff : 0xff; in ud_putcs_unaligned() local
131 src = ops->fontbuffer + (scr_readw(s--) & charmask)*cellsize; in ud_putcs_unaligned()
257 unsigned short charmask = vc->vc_hi_font_mask ? 0x1ff : 0xff; in ud_cursor() local
282 src = ops->fontbuffer + ((c & charmask) * (w * vc->vc_font.height)); in ud_cursor()
Dtileblit.c59 unsigned short charmask = vc->vc_hi_font_mask ? 0x1ff : 0xff; in tile_putcs() local
71 blit.indices[i] = (u32)(scr_readw(s++) & charmask); in tile_putcs()
Dfbcon_ccw.c104 u16 charmask = vc->vc_hi_font_mask ? 0x1ff : 0xff; in ccw_putcs_aligned() local
109 src = ops->fontbuffer + (scr_readw(s--) & charmask)*cellsize; in ccw_putcs_aligned()
227 unsigned short charmask = vc->vc_hi_font_mask ? 0x1ff : 0xff; in ccw_cursor() local
251 src = ops->fontbuffer + ((c & charmask) * (w * vc->vc_font.width)); in ccw_cursor()
Dfbcon_cw.c90 u16 charmask = vc->vc_hi_font_mask ? 0x1ff : 0xff; in cw_putcs_aligned() local
95 src = ops->fontbuffer + (scr_readw(s++) & charmask)*cellsize; in cw_putcs_aligned()
211 unsigned short charmask = vc->vc_hi_font_mask ? 0x1ff : 0xff; in cw_cursor() local
235 src = ops->fontbuffer + ((c & charmask) * (w * vc->vc_font.width)); in cw_cursor()
Dfbcon.c296 unsigned short charmask = vc->vc_hi_font_mask ? 0x1ff : 0xff; in get_color() local
298 c = vc->vc_video_erase_char & charmask; in get_color()
2325 unsigned short charmask = vc->vc_hi_font_mask ? in fbcon_generic_blank() local
2330 vc->vc_video_erase_char &= charmask; in fbcon_generic_blank()
/linux-3.4.99/drivers/tty/vt/
Dvt.c2123 u16 himask, charmask; in do_con_write() local
2147 charmask = himask ? 0x1ff : 0xff; in do_con_write()
2271 if (tc & ~charmask) { in do_con_write()
2276 if ((!(vc->vc_utf && !vc->vc_disp_ctrl) || c < 128) && !(c & ~charmask)) { in do_con_write()