Searched refs:new_cols (Results 1 – 2 of 2) sorted by relevance
/drivers/video/console/ |
D | fbcon.c | 556 int cols, int rows, int new_cols, int new_rows) in fbcon_prepare_logo() argument 562 int cols, int rows, int new_cols, int new_rows) in fbcon_prepare_logo() argument 590 save = kmalloc(logo_lines * new_cols * 2, GFP_KERNEL); in fbcon_prepare_logo() 592 int i = cols < new_cols ? cols : new_cols; in fbcon_prepare_logo() 593 scr_memsetw(save, erase, logo_lines * new_cols * 2); in fbcon_prepare_logo() 596 scr_memcpyw(save + cnt * new_cols, r, 2 * i); in fbcon_prepare_logo() 630 scr_memcpyw(q, save, logo_lines * new_cols * 2); in fbcon_prepare_logo() 1028 int logo = 1, new_rows, new_cols, rows, cols, charcnt = 256; in fbcon_init() local 1103 new_cols = FBCON_SWAP(ops->rotate, info->var.xres, info->var.yres); in fbcon_init() 1105 new_cols /= vc->vc_font.width; in fbcon_init() [all …]
|
/drivers/tty/vt/ |
D | vt.c | 850 unsigned int new_cols, new_rows, new_row_size, new_screen_size; in vc_do_resize() local 865 new_cols = (cols ? cols : vc->vc_cols); in vc_do_resize() 867 new_row_size = new_cols << 1; in vc_do_resize() 870 if (new_cols == vc->vc_cols && new_rows == vc->vc_rows) in vc_do_resize() 885 err = resize_screen(vc, new_cols, new_rows, user); in vc_do_resize() 892 vc->vc_cols = new_cols; in vc_do_resize()
|