Home
last modified time | relevance | path

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

/linux-6.15/drivers/s390/char/
H A Draw3270.h61 int new_model, int new_cols, int new_rows,
H A Dcon3270.c964 int new_model, int new_rows, int new_cols, in tty3270_resize() argument
977 old_cols == new_cols && in tty3270_resize()
985 new_input = kzalloc(tty3270_input_size(new_cols), GFP_KERNEL | GFP_DMA); in tty3270_resize()
988 new_prompt = kzalloc(tty3270_input_size(new_cols), GFP_KERNEL); in tty3270_resize()
991 screen = tty3270_alloc_screen(tp, new_rows, new_cols, &new_allocated); in tty3270_resize()
994 new_rcl_lines = tty3270_alloc_recall(new_cols); in tty3270_resize()
1005 tp->view.cols = new_cols; in tty3270_resize()
/linux-6.15/drivers/video/fbdev/core/
H A Dfbcon.c564 int cols, int rows, int new_cols, int new_rows) in fbcon_prepare_logo() argument
570 int cols, int rows, int new_cols, int new_rows) in fbcon_prepare_logo() argument
598 save = kmalloc(array3_size(logo_lines, new_cols, 2), in fbcon_prepare_logo()
601 int i = min(cols, new_cols); in fbcon_prepare_logo()
605 scr_memcpyw(save + cnt * new_cols, r, 2 * i); in fbcon_prepare_logo()
639 scr_memcpyw(q, save, array3_size(logo_lines, new_cols, 2)); in fbcon_prepare_logo()
1015 int logo = 1, new_rows, new_cols, rows, cols; in fbcon_init() local
1100 new_cols /= vc->vc_font.width; in fbcon_init()
1139 vc->vc_cols = new_cols; in fbcon_init()
1142 vc_resize(vc, new_cols, new_rows); in fbcon_init()
[all …]
/linux-6.15/drivers/tty/vt/
H A Dvt.c1138 unsigned int new_cols, new_rows, new_row_size, new_screen_size; in vc_do_resize() local
1147 new_cols = (cols ? cols : vc->vc_cols); in vc_do_resize()
1149 new_row_size = new_cols << 1; in vc_do_resize()
1152 if (new_cols == vc->vc_cols && new_rows == vc->vc_rows) { in vc_do_resize()
1169 return resize_screen(vc, new_cols, new_rows, from_user); in vc_do_resize()
1179 new_uniscr = vc_uniscr_alloc(new_cols, new_rows); in vc_do_resize()
1192 err = resize_screen(vc, new_cols, new_rows, from_user); in vc_do_resize()
1200 vc->vc_cols = new_cols; in vc_do_resize()
1229 vc_uniscr_copy_area(new_uniscr, new_cols, new_rows, in vc_do_resize()