Home
last modified time | relevance | path

Searched refs:new_cols (Results 1 – 4 of 4) sorted by relevance

/openbmc/linux/drivers/s390/char/
H A Draw3270.h61 int new_model, int new_cols, int new_rows,
H A Dcon3270.c963 int new_model, int new_rows, int new_cols, in tty3270_resize() argument
976 old_cols == new_cols && in tty3270_resize()
984 new_input = kzalloc(tty3270_input_size(new_cols), GFP_KERNEL | GFP_DMA); in tty3270_resize()
987 new_prompt = kzalloc(tty3270_input_size(new_cols), GFP_KERNEL); in tty3270_resize()
990 screen = tty3270_alloc_screen(tp, new_rows, new_cols, &new_allocated); in tty3270_resize()
993 new_rcl_lines = tty3270_alloc_recall(new_cols); in tty3270_resize()
1004 tp->view.cols = new_cols; in tty3270_resize()
/openbmc/linux/drivers/video/fbdev/core/
H A Dfbcon.c546 int cols, int rows, int new_cols, int new_rows) in fbcon_prepare_logo() argument
552 int cols, int rows, int new_cols, int new_rows) in fbcon_prepare_logo() argument
580 save = kmalloc(array3_size(logo_lines, new_cols, 2), in fbcon_prepare_logo()
583 int i = min(cols, new_cols); in fbcon_prepare_logo()
584 scr_memsetw(save, erase, array3_size(logo_lines, new_cols, 2)); in fbcon_prepare_logo()
587 scr_memcpyw(save + cnt * new_cols, r, 2 * i); in fbcon_prepare_logo()
621 scr_memcpyw(q, save, array3_size(logo_lines, new_cols, 2)); in fbcon_prepare_logo()
998 int logo = 1, new_rows, new_cols, rows, cols; in fbcon_init() local
1081 new_cols = FBCON_SWAP(ops->rotate, info->var.xres, info->var.yres); in fbcon_init()
1083 new_cols /= vc->vc_font.width; in fbcon_init()
[all …]
/openbmc/linux/drivers/tty/vt/
H A Dvt.c1150 unsigned int new_cols, new_rows, new_row_size, new_screen_size; in vc_do_resize() local
1166 new_cols = (cols ? cols : vc->vc_cols); in vc_do_resize()
1168 new_row_size = new_cols << 1; in vc_do_resize()
1171 if (new_cols == vc->vc_cols && new_rows == vc->vc_rows) { in vc_do_resize()
1188 return resize_screen(vc, new_cols, new_rows, user); in vc_do_resize()
1198 new_uniscr = vc_uniscr_alloc(new_cols, new_rows); in vc_do_resize()
1211 err = resize_screen(vc, new_cols, new_rows, user); in vc_do_resize()
1219 vc->vc_cols = new_cols; in vc_do_resize()
1248 vc_uniscr_copy_area(new_uniscr, new_cols, new_rows, in vc_do_resize()