HomeSort by: relevance | last modified time | path
    Searched defs:rows (Results 1 - 25 of 41) sorted by relevancy

1 2

  /src/lib/libform/
post.c 44 int rows, cols, status; local in function:post_form
58 if (scale_form(form, &rows, &cols) != E_OK)
61 if ((form->scrwin != NULL) && ((rows > getmaxy(form->scrwin))
  /src/sys/dev/ic/
monitors.h 42 u_int16_t rows; /* Rows */ member in struct:monitor
  /src/sys/arch/mac68k/dev/
macfb.c 144 int i, rows; local in function:macfb_clear
147 rows = dc->dc_ht;
148 for (i = 0; rows-- > 0; i += dc->dc_rowbytes)
  /src/sys/arch/powerpc/oea/
ofw_rascons.c 264 int cols = 0, rows = 0; local in function:rascons_init_rasops
270 OF_interpret("#lines", 0, 1, &rows);
274 rasops_init(ri, rows, cols);
  /src/games/rogue/
inventory.c 302 short rows = (((COMS / 2) + (COMS % 2)) + 1); local in function:id_com
305 if (rows > LINES) {
307 rows = LINES;
311 for (i = 0; i < rows; i++) {
317 for (i = 0; i < rows; i++) {
321 for (i = 0; i < (rows-1); i++) {
332 mvaddstr(rows - 1, 0, need_two_screens ? more : press_space);
337 k += ((rows-1) * 2);
341 for (i = 0; i < rows; i++) {
  /src/sys/arch/sparc/dev/
kd.c 82 int rows, cols; member in struct:kd_softc
149 kd->rows = fbrcons_rows();
161 if (kd->rows == 0)
162 kd->rows = (u_short)ep->eeTtyRows;
171 if (kd->rows == 0 &&
172 prom_getoption("screen-#rows", prop, sizeof prop) == 0)
173 kd->rows = strtoul(prop, NULL, 10);
237 tp->t_winsize.ws_row = kd->rows;
  /src/sys/arch/sparc64/dev/
kd.c 96 int rows, cols; member in struct:kd_softc
147 if (kd->rows == 0 &&
148 prom_getoption("screen-#rows", prop, sizeof prop) == 0)
149 kd->rows = strtoul(prop, NULL, 10);
209 tp->t_winsize.ws_row = kd->rows;
  /src/sys/arch/sun2/dev/
kd.c 79 int rows, cols; member in struct:kd_softc
155 kd->rows = fbrcons_rows();
167 if (kd->rows == 0)
168 kd->rows = (u_short)ep->eeTtyRows;
179 if (kd->rows == 0 &&
180 (prop = PROM_getpropstring(optionsnode, "screen-#rows"))) {
184 kd->rows = (unsigned short)i;
252 tp->t_winsize.ws_row = kd->rows;
  /src/sys/dev/raidframe/
rf_compat50.c 77 u_int rows; member in struct:RF_DeviceConfig50_s
186 d_cfg->rows = 1; /* there is only 1 row now */
rf_compat80.c 72 u_int rows; member in struct:RF_DeviceConfig_s80
82 RF_RowCol_t numRow, numCol, numSpare; /* number of rows, columns,
176 config80->rows = 1;
  /src/sys/external/isc/atheros_hal/dist/ar5416/
ar5416_attach.c 258 int rows, cols; member in struct:ar5416Attach::ini
  /src/usr.bin/resize/
resize.c 230 "Usage: %s [rows cols]\n" :
231 "Usage: %s [-v] [-u] [-c] [-s [rows cols]]\n", myname);
327 int rows, cols; local in function:main
507 if (sscanf(buf, size[emu], &rows, &cols) != 2) {
508 fprintf(stderr, "%s: Can't get rows and columns\r\n", myname);
523 setup_winsize(ts, rows, cols, 0, 0);
531 setup_winsize(ts, rows, cols,
532 scaled(TTYSIZE_ROWS(ts), rows, ts.ws_ypixel),
575 sprintf(termcap + i, "%d", rows);
592 setname, cols, rows);
    [all...]
  /src/sys/arch/i386/stand/efiboot/
efimemory.c 203 UINTN cols, rows; local in function:efi_memory_get_memmap
207 ST->ConOut->Mode->Mode, &cols, &rows);
208 if (EFI_ERROR(status) || rows <= 2)
377 UINTN cols, rows, row; local in function:efi_memory_show_map
380 ST->ConOut->Mode->Mode, &cols, &rows);
381 if (EFI_ERROR(status) || rows <= 2)
382 rows = 0;
384 rows -= 2;
409 if (++row >= rows) {
eficons.c 542 UINTN cols, rows; local in function:print_text_modes
548 ST->ConOut, i, &cols, &rows);
552 i == curmode ? '*' : ' ', i, (uintmax_t)cols, (uintmax_t)rows);
560 UINTN cols, rows; local in function:efi_find_text_mode
566 ST->ConOut, i, &cols, &rows);
570 (uintmax_t)cols, (uintmax_t)rows);
741 UINTN cols, rows; local in function:eficons_init_video
752 ST->ConOut, i, &cols, &rows);
756 if (mode80x25 < 0 && cols == 80 && rows == 25)
758 else if (mode100x31 < 0 && cols == 100 && rows == 31
    [all...]
boot.c 783 UINTN cols, rows, row = 0; local in function:command_devpath
787 ST->ConOut->Mode->Mode, &cols, &rows);
788 if (EFI_ERROR(status) || rows <= 2)
789 rows = 0;
791 rows -= 2;
808 if (++row >= rows) {
831 if (++row >= rows) {
853 UINTN cols, rows, row = 0; local in function:command_efivar
857 ST->ConOut->Mode->Mode, &cols, &rows);
858 if (EFI_ERROR(status) || rows <= 2
    [all...]
  /src/sys/arch/hp300/stand/common/
itevar.h 64 short rows, cols; member in struct:ite_data
  /src/lib/libmenu/
menu.h 102 int rows; /* max number of rows to be displayed */ member in struct:__menu
104 int item_rows; /* number of item rows we have */
  /src/sys/arch/atari/dev/
grfabs_reg.h 90 u_short rows; /* number of display rows. */ member in struct:bitmap
  /src/sys/arch/newsmips/dev/
fb.c 286 int width, height, stride, xoff, yoff, cols, rows; local in function:fb_common_init
332 rows = (height - 2) / ri->ri_font->fontheight;
335 yoff = (height - rows * ri->ri_font->fontheight) / 2;
336 rasops_reconfig(ri, rows, cols);
  /src/sys/arch/amiga/dev/
grfabs_reg.h 109 u_short rows; /* number of display rows. */ member in struct:bitmap
132 #define BM_HEIGHT(b) ((b)->rows)
  /src/sys/arch/arm/broadcom/
bcm53xx_board.c 161 const u_int rows = __SHIFTOUT(v01, CTL_01_MAX_ROW) local in function:bcm53xx_memprobe
185 const u_int chip_size_log2 = cols + rows + banks_log2 + ddr_width_log2;
  /src/bin/csh/
file.c 307 size_t c, columns, i, maxwidth, r, rows; local in function:print_by_column
319 rows = (count + (columns - 1)) / columns;
320 for (r = 0; r < rows; r++) {
322 i = c * rows + r;
  /src/sys/dev/virtio/
viocon.c 90 uint16_t rows; member in struct:virtio_console_control_resize
  /src/bin/ksh/
misc.c 1108 /* Print things in columns and rows - func() is called to format the ith
1123 int rows, cols; local in function:print_columns
1133 rows = (n + cols - 1) / cols;
1134 if (prefcol && n && cols > rows) {
1135 int tmp = rows;
1137 rows = cols;
1139 if (rows > n)
1140 rows = n;
1146 for (r = 0; r < rows; r++) {
1148 i = c * rows + r
    [all...]
  /src/bin/ed/
main.c 460 long rows = 22; /* scroll length: ws_row - 2 */ variable in typeref:typename:long
856 STRTOL(rows, ibufp);
859 second_addr + rows), gflag) < 0)
1418 if (ws.ws_row > 2) rows = ws.ws_row - 2;

Completed in 25 milliseconds

1 2