Lines Matching defs:rows
144 static void vc_init(struct vc_data *vc, unsigned int rows,
338 static struct uni_screen *vc_uniscr_alloc(unsigned int cols, unsigned int rows)
345 memsize = cols * rows * sizeof(char32_t);
346 memsize += rows * sizeof(char32_t *);
353 p = uniscr->lines + rows;
354 for (i = 0; i < rows; i++) {
1102 * Change # of rows and columns (0 means unchanged/the size of fg_console)
1353 * @rows: rows
1361 int vc_resize(struct vc_data *vc, unsigned int cols, unsigned int rows)
1363 return vc_do_resize(vc->port.tty, vc, cols, rows);
3458 static void vc_init(struct vc_data *vc, unsigned int rows,
3464 vc->vc_rows = rows;
3533 /* Assuming vc->vc_{cols,rows,screenbuf_size} are sane here. */