Searched refs:rows (Results 26 - 50 of 124) sorted by relevance

12345

/freebsd-13-stable/contrib/ncurses/menu/
H A Dm_item_top.c67 if ((row < 0) || (row > (menu->rows - menu->arows)))
101 assert((menu->toprow >= 0) && (menu->toprow < menu->rows));
H A Dm_new.c65 menu->rows = menu->frows;
H A Dm_global.c59 1, /* Spacing for rows */
421 Last_in_Column = (menu->rows - 1) * Number_Of_Columns + col;
432 (cycle ? menu->items[(row + 1) < menu->rows ?
446 int Number_Of_Rows = menu->rows;
572 menu->toprow = (short)(((menu->rows - menu->frows) >= 0)
573 ? min(menu->rows - menu->frows, new_toprow)
596 menu->toprow = (short)(((menu->rows - menu->frows) >= 0)
597 ? min(menu->rows - menu->frows, new_toprow)
H A Dmenu.priv.h110 row = (short) (( (item)->y < ((menu)->rows - row) ) \
112 : (menu)->rows - (menu)->arows); \
/freebsd-13-stable/contrib/dialog/
H A Deditbox.c55 load_list(const char *file, char ***list, int *rows) argument
65 *rows = 0;
116 grow_list(list, rows, (int) need + 1);
124 free_list(char ***list, int *rows) argument
128 for (n = 0; n < (*rows); ++n) {
135 *rows = 0;
209 scroll_to(int pagesize, int rows, int *base_row, int *this_row, int target) argument
227 } else if (target >= rows) {
228 if (*this_row < rows - 1) {
229 *this_row = rows
318 dlg_editbox(const char *title, char ***list, int *rows, int height, int width) argument
754 int rows; local
[all...]
/freebsd-13-stable/crypto/openssl/crypto/bio/
H A Db_dump.c33 int i, j, rows, n; local
43 rows = len / dump_width;
44 if ((rows * dump_width) < len)
45 rows++;
46 for (i = 0; i < rows; i++) {
/freebsd-13-stable/usr.sbin/bsdconfig/timezone/
H A Dtimezone89 local height width rows
90 eval f_dialog_menu_size height width rows \
109 $height $width $rows \
349 eval f_dialog_menu_size height width rows \
366 $height $width $rows \
410 eval f_dialog_menu_size height width rows \
424 $height $width $rows \
/freebsd-13-stable/crypto/heimdal/lib/roken/
H A Drtbl.c49 struct column_entry *rows; member in struct:column_data
109 free (c->rows[j].data);
110 free (c->rows);
144 col->rows = NULL;
170 tmp = realloc(table->columns[c]->rows,
171 max_rows * sizeof(table->columns[c]->rows));
174 table->columns[c]->rows = tmp;
193 column->width = max (column->width, (int) strlen (column->rows[i].data));
294 tmp = realloc (c->rows, (c->num_rows + 1) * sizeof (*tmp));
299 c->rows
[all...]
/freebsd-13-stable/usr.sbin/bsdconfig/console/
H A Dsaver72 local height width rows
73 eval f_dialog_menu_size height width rows \
105 $height $width $rows \
H A Dfont72 local height width rows
73 eval f_dialog_menu_size height width rows \
106 $height $width $rows \
/freebsd-13-stable/usr.sbin/bsdinstall/scripts/
H A Dwlanconfig115 eval f_dialog_menu_size height width rows \
124 $height $width $rows \
132 eval f_dialog_menu_size height width rows \
141 $height $width $rows \
221 f_dialog_menu_size height width rows "$DIALOG_TITLE" \
229 $height $width $rows \
249 eval f_dialog_menu_size height width rows \"\$DIALOG_TITLE\" \
255 $height $width $rows \
/freebsd-13-stable/sys/dev/syscons/
H A Dscvtb.c51 sc_vtb_init(sc_vtb_t *vtb, int type, int cols, int rows, void *buf, int wait) argument
56 vtb->vtb_rows = rows;
57 vtb->vtb_size = cols*rows;
64 if ((buf == NULL) && (cols*rows != 0)) {
66 (vm_offset_t)malloc(cols*rows*sizeof(u_int16_t),
71 cols*rows*sizeof(u_int16_t));
114 sc_vtb_size(int cols, int rows) argument
116 return (size_t)(cols*rows*sizeof(u_int16_t));
/freebsd-13-stable/contrib/ncurses/form/
H A Dfld_def.c42 0, /* rows */
263 | Function : FIELD *new_field( int rows, int cols,
267 | Description : Create a new field with this many 'rows' and 'cols',
269 | Allocate 'nrow' off-screen rows and 'nbuf' additional
278 new_field(int rows, int cols, int frow, int fcol, int nrow, int nbuf) argument
286 T((T_CALLED("new_field(%d,%d,%d,%d,%d,%d)"), rows, cols, frow, fcol, nrow, nbuf));
287 if (rows > 0 &&
298 New_Field->rows = (short)rows;
300 New_Field->drows = rows
[all...]
H A Dfrm_def.c42 0, /* rows */
137 form->rows = form->cols = 0;
215 maximum_row_in_field = fields[j]->frow + fields[j]->rows;
218 if (form->rows < maximum_row_in_field)
219 form->rows = (short) maximum_row_in_field;
H A Dfrm_post.c70 if ((form->cols > getmaxx(formwin)) || (form->rows > getmaxy(formwin)))
/freebsd-13-stable/tools/pkgbase/
H A Dmetalog_reader.lua211 --- @param rows MetalogRow[]
214 function metalogrows_all_equal(rows, ignore_name, ignore_tags)
229 for _, v in ipairs(rows) do
230 local bol, offby = __eq(v, rows[1])
277 local rows = files[filename]
279 -- if these rows are equal, there should be warning, but it
281 if #rows > 1 and not metalogrows_all_equal(rows) then
284 local row = rows[1]
384 for filename, rows i
[all...]
/freebsd-13-stable/sys/dev/ath/ath_hal/ar5416/
H A Dar2133.c540 + AH5416(ah)->ah_ini_bank0.rows * sizeof(uint32_t)
541 + AH5416(ah)->ah_ini_bank1.rows * sizeof(uint32_t)
542 + AH5416(ah)->ah_ini_bank2.rows * sizeof(uint32_t)
543 + AH5416(ah)->ah_ini_bank3.rows * sizeof(uint32_t)
544 + AH5416(ah)->ah_ini_bank6.rows * sizeof(uint32_t)
545 + AH5416(ah)->ah_ini_bank7.rows * sizeof(uint32_t)
563 priv->Bank0Data = bankData, bankData += AH5416(ah)->ah_ini_bank0.rows;
564 priv->Bank1Data = bankData, bankData += AH5416(ah)->ah_ini_bank1.rows;
565 priv->Bank2Data = bankData, bankData += AH5416(ah)->ah_ini_bank2.rows;
566 priv->Bank3Data = bankData, bankData += AH5416(ah)->ah_ini_bank3.rows;
[all...]
/freebsd-13-stable/usr.sbin/bsdconfig/startup/
H A Drcdelete201 local height width rows
203 height width rows \
226 $height $width $rows \
283 local height width rows
284 eval f_dialog_menu_size height width rows \
302 $height $width $rows \
H A Drcvar129 local height width rows
131 height width rows \
152 $height $width $rows \
/freebsd-13-stable/contrib/nvi/vi/
H A Dv_z.c136 if (sp->t_rows > sp->rows - 1)
137 sp->t_minrows = sp->t_rows = sp->rows - 1;
H A Dvi.h298 size_t srows; /* 1-N: rows in the terminal/window. */
330 ((sp)->t_maxrows < (sp)->rows ? (sp)->t_maxrows : (sp)->rows - 1)
337 #define IS_ONELINE(sp) ((sp)->rows == 1)
358 ((sp)->rows != O_VAL(sp, O_LINES))
/freebsd-13-stable/contrib/mandoc/
H A Deqn_html.c40 size_t i, j, rows; local
63 /* Estimate the number of rows, first. */
66 for (rows = 0; NULL != child; rows++)
70 for (i = 0; i < rows; i++) {
/freebsd-13-stable/contrib/kyua/utils/text/
H A Dtable.cpp169 /// the rows as necessary.
175 const std::vector< std::string > rows = text::refill(row[column],
178 if (textual_rows.size() < rows.size())
179 textual_rows.resize(rows.size(), text::table_row(row.size()));
181 for (std::vector< std::string >::size_type i = 0; i < rows.size(); ++i) {
185 textual_rows[i][j] = pad_cell(rows[i], widths[j], is_last);
308 /// Gets an iterator pointing to the beginning of the rows of the table.
310 /// \return An iterator on the rows.
318 /// Gets an iterator pointing to the end of the rows of the table.
320 /// \return An iterator on the rows
[all...]
/freebsd-13-stable/lib/libdpv/
H A Ddialog_util.c122 char *rows; local
152 if ((rows = strchr(rbuf, ' ')) == NULL)
154 if ((cols = strchr(rows, ',')) != NULL) {
163 rows, 0, USHRT_MAX, (const char **)NULL);
169 * Return the current maximum height (rows) for an [X]dialog(1) widget.
/freebsd-13-stable/contrib/nvi/cl/
H A Dcl_main.c53 size_t rows, cols; local
100 if (cl_ssize(NULL, 0, &rows, &cols, NULL))
103 /* Add the rows and columns to the global structure. */
104 OG_VAL(gp, GO_LINES) = OG_D_VAL(gp, GO_LINES) = rows;

Completed in 315 milliseconds

12345