Lines Matching defs:rows
327 static u32 **vc_uniscr_alloc(unsigned int cols, unsigned int rows)
334 memsize = col_size * rows;
335 memsize += rows * sizeof(*uni_lines);
341 p = uni_lines + rows;
342 for (i = 0; i < rows; i++) {
567 unsigned int rows = bottom - top;
571 nr = rows - 1;
584 clear = src + (rows - nr) * vc->vc_cols;
587 scr_memmovew(dst, src, (rows - nr) * vc->vc_size_row);
1050 * Change # of rows and columns (0 means unchanged/the size of fg_console)
1301 * @rows: rows
1309 int vc_resize(struct vc_data *vc, unsigned int cols, unsigned int rows)
1311 return vc_do_resize(vc->port.tty, vc, cols, rows);
3469 /* Assuming vc->vc_{cols,rows,screenbuf_size} are sane here. */