Lines Matching refs:rows
323 int rows, offset, c; in video_drawchars() local
334 for (rows = VIDEO_FONT_HEIGHT, dest = dest0; in video_drawchars()
335 rows--; dest += VIDEO_LINE_LEN) { in video_drawchars()
358 for (rows = VIDEO_FONT_HEIGHT, dest = dest0; in video_drawchars()
359 rows--; dest += VIDEO_LINE_LEN) { in video_drawchars()
392 for (rows = VIDEO_FONT_HEIGHT, dest = dest0; in video_drawchars()
393 rows--; dest += VIDEO_LINE_LEN) { in video_drawchars()
426 for (rows = VIDEO_FONT_HEIGHT, dest = dest0; in video_drawchars()
427 rows--; dest += VIDEO_LINE_LEN) { in video_drawchars()
469 for (rows = VIDEO_FONT_HEIGHT, dest = dest0; in video_drawchars()
470 rows--; dest += VIDEO_LINE_LEN) { in video_drawchars()
612 const int rows = CONFIG_CONSOLE_SCROLL_LINES; in console_scrollup() local
621 VIDEO_FONT_HEIGHT * rows, /* source pos y */ in console_scrollup()
627 - VIDEO_FONT_HEIGHT * rows /* frame height */ in console_scrollup()
630 memcpyl(CONSOLE_ROW_FIRST, CONSOLE_ROW_FIRST + rows * CONSOLE_ROW_SIZE, in console_scrollup()
631 (CONSOLE_SIZE - CONSOLE_ROW_SIZE * rows) >> 2); in console_scrollup()
634 for (i = 1; i <= rows; i++) in console_scrollup()
638 console_row -= rows; in console_scrollup()