Searched refs:rows (Results 1 - 11 of 11) sorted by relevance

/fuchsia/zircon/system/ulib/virtio/include/virtio/
H A Dconsole.h22 uint16_t rows; member in struct:virtio_console_config
/fuchsia/zircon/system/core/virtcon/
H A Dvc-device.cpp59 // calculate how many rows/columns we have
60 vc->rows = DEFAULT_HEIGHT / vc->charh;
68 calloc(1, vc->rows * vc->columns * sizeof(vc_char_t)));
102 assert(y0 <= static_cast<int>(vc->rows));
103 assert(y1 <= static_cast<int>(vc->rows));
180 // Add a row without dropping any existing rows.
244 int rows = vc_rows(vc); local
245 vc_invalidate(vc, 0, 0, vc->columns, rows);
246 vc_invalidate_lines(vc, 0, rows);
322 size_t count = vc->rows * v
398 int rows = vc_rows(vc); local
466 unsigned rows = vc_gfx->height / vc->charh; local
602 int rows = vc_rows(vc); local
[all...]
H A Dvc.h61 // Maximum number of rows that may be stored in the scrollback buffer.
63 // Number of rows currently stored in the scrollback buffer.
65 // Offset, in rows, of the oldest row in the scrollback buffer.
68 unsigned rows, columns; member in struct:vc
137 return vc->flags & VC_FLAG_FULLSCREEN ? vc->rows : vc->rows - 1;
H A Dvc-input.cpp159 .height = vc->rows,
H A Dmain.cpp195 .height = vc->rows,
H A Dtextcon-test.cpp122 uint32_t cmp_size_y = vc_dev->rows + 1;
/fuchsia/zircon/kernel/lib/gfxconsole/
H A Dgfxconsole.cpp51 uint rows, columns; member in struct:__anon72
52 uint extray; // extra pixels left over if the rows doesn't fit precisely
126 if (gfxconsole.y >= gfxconsole.rows) {
191 // calculate how many rows/columns we have
192 gfxconsole.rows = surface->height / font->height;
194 gfxconsole.extray = surface->height - (gfxconsole.rows * font->height);
196 dprintf(SPEW, "gfxconsole: rows %u, columns %u, extray %u\n", gfxconsole.rows,
/fuchsia/zircon/third_party/ulib/linenoise/
H A Dlinenoise.c160 size_t maxrows; /* Maximum num of rows used so far (multiline mode) */
204 "[%d %d %d] p: %d, rows: %d, rpos: %d, max: %d, oldmax: %d\n", \
205 (int)l->len,(int)l->pos,(int)l->oldpos,plen,rows,rpos, \
290 int cols, rows; local
296 /* Read the response: ESC [ rows ; cols R */
312 if (sscanf(buf+2,"%d;%d",&rows,&cols) != 2) return -1;
603 int rows = (plen+l->len+l->cols-1)/l->cols; /* rows used by current buf. */ local
612 if (rows > (int)l->maxrows) l->maxrows = rows;
[all...]
/fuchsia/zircon/third_party/uapp/kilo/
H A Dkilo.c63 static int getConsoleSize(int *rows, int *cols) { argument
69 *rows = wsz.height;
119 int screenrows; /* Number of rows that we can show */
121 int numrows; /* Number of rows */
321 * cursor is stored at *rows and *cols and 0 is returned. */
322 int getCursorPosition(int ifd, int ofd, int *rows, int *cols) { argument
329 /* Read the response: ESC [ rows ; cols R */
339 if (sscanf(buf+2,"%d;%d",rows,cols) != 2) return -1;
346 int getWindowSize(int ifd, int ofd, int *rows, int *cols) { argument
348 if (getConsoleSize(rows, col
[all...]
/fuchsia/zircon/system/private/efi/protocol/
H A Dsimple-text-output.h126 size_t mode_num, size_t* cols, size_t* rows) EFIAPI;
/fuchsia/zircon/third_party/ulib/chromiumos-platform-ec/include/chromiumos-platform-ec/
H A Dec_commands.h2802 uint32_t rows; member in struct:ec_response_mkbp_info
2815 * Info about the keyboard matrix: number of rows and columns.

Completed in 125 milliseconds