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

12345

/freebsd-13-stable/contrib/ncurses/form/
H A Dfrm_scale.c40 | Function : int scale_form( const FORM *form, int *rows, int *cols )
49 scale_form(const FORM *form, int *rows, int *cols) argument
53 (void *)rows,
62 if (rows)
63 *rows = form->rows;
H A Dfld_info.c41 | int *rows, int *cols,
52 int *rows, int *cols,
58 (void *)rows, (void *)cols,
65 if (rows)
66 *rows = field->rows;
51 field_info(const FIELD *field, int *rows, int *cols, int *frow, int *fcol, int *nrow, int *nbuf) argument
H A Dfld_dup.c67 New_Field->rows = field->rows;
H A Dfld_link.c72 New_Field->rows = field->rows;
/freebsd-13-stable/contrib/ncurses/menu/
H A Dm_scale.c55 scale_menu(const MENU * menu, int *rows, int *cols) argument
59 (void *)rows,
67 if (rows)
68 *rows = menu->height;
H A Dm_format.c36 * Set and get maximum numbers of rows and columns in menus *
47 | Function : int set_menu_format(MENU *menu, int rows, int cols)
49 | Description : Sets the maximum number of rows and columns of items
60 set_menu_format(MENU * menu, int rows, int cols) argument
64 T((T_CALLED("set_menu_format(%p,%d,%d)"), (void *)menu, rows, cols));
66 if (rows < 0 || cols < 0)
77 if (rows == 0)
78 rows = menu->frows;
85 menu->frows = (short)rows;
88 assert(rows >
124 menu_format(const MENU * menu, int *rows, int *cols) argument
[all...]
/freebsd-13-stable/contrib/cortex-strings/scripts/
H A Dplot.py15 def unique(rows, name):
19 return sorted(set(getattr(x, name) for x in rows))
41 rows = [x.strip().split(':') for x in fileinput.input()]
43 rows = [[to_float(y) for y in x] for x in rows]
46 r = [Record(*(x + [0, 0, 0])) for x in rows]
52 for row in rows:
/freebsd-13-stable/sys/dev/sfxge/common/
H A Dsiena_sram.c89 size_t rows; local
104 rows = SIENA_SRAM_ROWS - 1;
105 EFX_POPULATE_OWORD_1(oword, FRF_AZ_SRM_RX_DC_BASE_ADR, rows);
108 EFX_POPULATE_OWORD_1(oword, FRF_AZ_SRM_TX_DC_BASE_ADR, rows + 1);
116 for (wptr = 0, rptr = 0; wptr < rows; ++wptr) {
120 if ((wptr - rptr) < 64 && wptr < rows - 1)
138 for (wptr = 0, rptr = 0; wptr < rows; ++wptr) {
142 if ((wptr - rptr) < 64 && wptr < rows - 1)
/freebsd-13-stable/sys/dev/virtio/console/
H A Dvirtio_console.h47 /* rows of the screens */
48 uint16_t rows; member in struct:virtio_console_config
/freebsd-13-stable/contrib/kyua/utils/sqlite/
H A Dtest_utils.hpp105 /// The created 'test' table is populated with a few rows. If there are any
136 int rows, columns; local
138 "SELECT * FROM test ORDER BY prime", &result, &rows, &columns, NULL));
139 ATF_REQUIRE_EQ(5, rows);
/freebsd-13-stable/usr.sbin/bsdconfig/console/
H A Dconsole64 local height width rows
65 eval f_dialog_menu_size height width rows \
84 $height $width $rows \
H A Drepeat62 local height width rows
63 eval f_dialog_menu_size height width rows \
86 $height $width $rows \
H A Dscreenmap64 local height width rows
65 eval f_dialog_menu_size height width rows \
90 $height $width $rows \
H A Dttys72 local height width rows
73 eval f_dialog_menu_size height width rows \
88 $height $width $rows \
/freebsd-13-stable/usr.sbin/bsdconfig/mouse/
H A Dmouse63 local height width rows
64 eval f_dialog_menu_size height width rows \
83 $height $width $rows \
H A Dport63 local height width rows
64 eval f_dialog_menu_size height width rows \
88 $height $width $rows \
H A Dtype68 local height width rows
69 eval f_dialog_menu_size height width rows \
98 $height $width $rows \
/freebsd-13-stable/usr.sbin/bsdconfig/networking/
H A Dnetworking63 local height width rows
64 eval f_dialog_menu_size height width rows \
83 $height $width $rows \
/freebsd-13-stable/usr.sbin/bsdconfig/security/
H A Dkern_securelevel64 local height width rows
65 eval f_dialog_menu_size height width rows \
95 $height $width $rows \
H A Dsecurity100 local height width rows
101 eval f_dialog_menu_size height width rows \
117 $height $width $rows \
/freebsd-13-stable/usr.sbin/bsdconfig/startup/
H A Drcadd67 local height width rows
68 eval f_dialog_menu_size height width rows \
83 $height $width $rows \
H A Dstartup61 local height width rows
62 eval f_dialog_menu_size height width rows \
81 $height $width $rows \
/freebsd-13-stable/usr.sbin/bsdconfig/usermgmt/
H A Dusermgmt68 local height width rows
69 eval f_dialog_menu_size height width rows \
94 $height $width $rows \
/freebsd-13-stable/contrib/nvi/vi/
H A Dvs_split.c53 if (sp->rows < 4) {
71 half = sp->rows / 2;
98 new->rows = sp->rows - half; /* New. */
100 sp->rows = half; /* Old. */
101 sp->roff += new->rows;
107 memcpy(_HMAP(sp), _HMAP(sp) + new->rows,
108 (sp->t_maxrows - new->rows) * sizeof(SMAP));
110 new->rows = half; /* New. */
111 sp->rows
[all...]
/freebsd-13-stable/usr.sbin/bsdinstall/scripts/
H A Ddocsinstall111 local height width rows
112 eval f_dialog_checklist_size height width rows \
127 $height $width $rows \

Completed in 103 milliseconds

12345