Home
last modified time | relevance | path

Searched refs:rows (Results 1 – 25 of 249) sorted by relevance

12345678910

/freebsd/contrib/llvm-project/llvm/lib/Support/BLAKE3/
H A Dblake3_sse41.c102 g1(&rows[0], &rows[1], &rows[2], &rows[3], t0); in compress_pre()
104 g2(&rows[0], &rows[1], &rows[2], &rows[3], t1); in compress_pre()
108 g1(&rows[0], &rows[1], &rows[2], &rows[3], t2); in compress_pre()
111 g2(&rows[0], &rows[1], &rows[2], &rows[3], t3); in compress_pre()
122 g1(&rows[0], &rows[1], &rows[2], &rows[3], t0); in compress_pre()
126 g2(&rows[0], &rows[1], &rows[2], &rows[3], t1); in compress_pre()
131 g1(&rows[0], &rows[1], &rows[2], &rows[3], t2); in compress_pre()
135 g2(&rows[0], &rows[1], &rows[2], &rows[3], t3); in compress_pre()
145 g1(&rows[0], &rows[1], &rows[2], &rows[3], t0); in compress_pre()
149 g2(&rows[0], &rows[1], &rows[2], &rows[3], t1); in compress_pre()
[all …]
H A Dblake3_sse2.c108 g1(&rows[0], &rows[1], &rows[2], &rows[3], t0); in compress_pre()
110 g2(&rows[0], &rows[1], &rows[2], &rows[3], t1); in compress_pre()
114 g1(&rows[0], &rows[1], &rows[2], &rows[3], t2); in compress_pre()
117 g2(&rows[0], &rows[1], &rows[2], &rows[3], t3); in compress_pre()
128 g1(&rows[0], &rows[1], &rows[2], &rows[3], t0); in compress_pre()
132 g2(&rows[0], &rows[1], &rows[2], &rows[3], t1); in compress_pre()
137 g1(&rows[0], &rows[1], &rows[2], &rows[3], t2); in compress_pre()
141 g2(&rows[0], &rows[1], &rows[2], &rows[3], t3); in compress_pre()
151 g1(&rows[0], &rows[1], &rows[2], &rows[3], t0); in compress_pre()
155 g2(&rows[0], &rows[1], &rows[2], &rows[3], t1); in compress_pre()
[all …]
H A Dblake3_avx512.c135 g1(&rows[0], &rows[1], &rows[2], &rows[3], t0); in compress_pre()
137 g2(&rows[0], &rows[1], &rows[2], &rows[3], t1); in compress_pre()
141 g1(&rows[0], &rows[1], &rows[2], &rows[3], t2); in compress_pre()
144 g2(&rows[0], &rows[1], &rows[2], &rows[3], t3); in compress_pre()
155 g1(&rows[0], &rows[1], &rows[2], &rows[3], t0); in compress_pre()
159 g2(&rows[0], &rows[1], &rows[2], &rows[3], t1); in compress_pre()
164 g1(&rows[0], &rows[1], &rows[2], &rows[3], t2); in compress_pre()
168 g2(&rows[0], &rows[1], &rows[2], &rows[3], t3); in compress_pre()
178 g1(&rows[0], &rows[1], &rows[2], &rows[3], t0); in compress_pre()
182 g2(&rows[0], &rows[1], &rows[2], &rows[3], t1); in compress_pre()
[all …]
/freebsd/contrib/ncurses/menu/
H A Dm_format.c60 set_menu_format(MENU *menu, int rows, int cols) in MENU_EXPORT()
66 if (rows < 0 || cols < 0) in MENU_EXPORT()
77 if (rows == 0) in MENU_EXPORT()
78 rows = menu->frows; in MENU_EXPORT()
85 menu->frows = (short)rows; in MENU_EXPORT()
88 assert(rows > 0 && cols > 0); in MENU_EXPORT()
94 menu->rows = (short)total_rows; in MENU_EXPORT()
105 if (rows > 0) in MENU_EXPORT()
106 _nc_Default_Menu.frows = (short)rows; in MENU_EXPORT()
126 if (rows) in menu_format()
[all …]
H A Dm_scale.c55 scale_menu(const MENU *menu, int *rows, int *cols) in MENU_EXPORT()
59 (void *)rows, in MENU_EXPORT()
67 if (rows) in MENU_EXPORT()
68 *rows = menu->height; in MENU_EXPORT()
/freebsd/contrib/bsddialog/lib/
H A Dbsddialog.h189 bsddialog_calendar(struct bsddialog_conf *conf, const char *text, int rows,
198 bsddialog_datebox(struct bsddialog_conf *conf, const char *text, int rows,
202 bsddialog_form(struct bsddialog_conf *conf, const char *text, int rows,
207 bsddialog_gauge(struct bsddialog_conf *conf, const char *text, int rows,
211 bsddialog_infobox(struct bsddialog_conf *conf, const char *text, int rows,
215 bsddialog_menu(struct bsddialog_conf *conf, const char *text, int rows,
230 bsddialog_msgbox(struct bsddialog_conf *conf, const char *text, int rows,
234 bsddialog_pause(struct bsddialog_conf *conf, const char *text, int rows,
247 bsddialog_textbox(struct bsddialog_conf *conf, const char *file, int rows,
251 bsddialog_timebox(struct bsddialog_conf *conf, const char *text, int rows,
[all …]
H A Dmessagebox.c58 if (set_widget_size(d->conf, d->rows, d->cols, &d->h, &d->w) != 0) in message_size_position()
60 if (set_widget_autosize(d->conf, d->rows, d->cols, &d->h, &d->w, in message_size_position()
96 do_message(struct bsddialog_conf *conf, const char *text, int rows, int cols, in do_message() argument
105 if (prepare_dialog(conf, text, rows, cols, &d) != 0) in do_message()
198 bsddialog_msgbox(struct bsddialog_conf *conf, const char *text, int rows, in bsddialog_msgbox() argument
201 return (do_message(conf, text, rows, cols, OK_LABEL, NULL)); in bsddialog_msgbox()
205 bsddialog_yesno(struct bsddialog_conf *conf, const char *text, int rows, in bsddialog_yesno() argument
208 return (do_message(conf, text, rows, cols, "Yes", "No")); in bsddialog_yesno()
212 bsddialog_infobox(struct bsddialog_conf *conf, const char *text, int rows, in bsddialog_infobox() argument
218 if (prepare_dialog(conf, text, rows, cols, &d) != 0) in bsddialog_infobox()
H A Dlib_util.c690 if (rows == BSDDIALOG_AUTOSIZE || rows == BSDDIALOG_FULLSCREEN) { in text_size()
806 if (rows == BSDDIALOG_FULLSCREEN) in set_widget_size()
844 if (rows == BSDDIALOG_AUTOSIZE) { in set_widget_autosize()
1156 if (*y >= *rows) { in print_string()
1157 *rows = *y + 1; in print_string()
1158 wresize(win, *rows, cols); in print_string()
1196 getmaxyx(pad, rows, cols); in print_textpad()
1238 if (y >= rows) { in print_textpad()
1239 rows = y + 1; in print_textpad()
1240 wresize(pad, rows, cols); in print_textpad()
[all …]
/freebsd/contrib/nvi/vi/
H A Dvs_split.c53 if (sp->rows < 4) { in vs_split()
71 half = sp->rows / 2; in vs_split()
98 new->rows = sp->rows - half; /* New. */ in vs_split()
250 new->rows = sp->rows; in vs_vsplit()
396 tsp->rows += sp->rows; in vs_discard()
479 if (tsp->roff + tsp->rows > sp->roff + sp->rows) in vs_join()
485 tlen -= tsp->rows; in vs_join()
514 if (tsp->roff + tsp->rows > sp->roff + sp->rows) in vs_join()
734 nsp->rows = sp->rows; /* XXX: Only place in vi that sets rows. */ in vs_swap()
881 s->rows += -count; in vs_resize()
[all …]
/freebsd/tools/pkgbase/
H A Dmetalog_reader.lua234 for _, v in ipairs(rows) do
235 local bol, offby = __eq(v, rows[1])
283 local rows = files[filename]
287 if #rows > 1 and not metalogrows_all_equal(rows) then
290 local row = rows[1]
390 for filename, rows in sortedPairs(files) do
391 if #rows == 1 then goto continue end
392 local iseq, offby = metalogrows_all_equal(rows)
395 rows[1].attrs.type ..
398 if rows[1].attrs.type == "dir" then
[all …]
/freebsd/contrib/ncurses/form/
H A Dfrm_scale.c49 scale_form(const FORM *form, int *rows, int *cols) in FORM_EXPORT()
53 (void *)rows, in FORM_EXPORT()
62 if (rows) in FORM_EXPORT()
63 *rows = form->rows; in FORM_EXPORT()
H A Dfld_info.c52 int *rows, int *cols, in FORM_EXPORT()
58 (void *)rows, (void *)cols, in FORM_EXPORT()
65 if (rows) in FORM_EXPORT()
66 *rows = field->rows; in FORM_EXPORT()
H A Dfld_def.c278 new_field(int rows, int cols, int frow, int fcol, int nrow, int nbuf) in new_field() argument
286 T((T_CALLED("new_field(%d,%d,%d,%d,%d,%d)"), rows, cols, frow, fcol, nrow, nbuf)); in new_field()
287 if (rows > 0 && in new_field()
298 New_Field->rows = (short)rows; in new_field()
300 New_Field->drows = rows + nrow; in new_field()
/freebsd/sys/dev/sfxge/common/
H A Dsiena_sram.c87 size_t rows; in siena_sram_test() local
102 rows = SIENA_SRAM_ROWS - 1; in siena_sram_test()
103 EFX_POPULATE_OWORD_1(oword, FRF_AZ_SRM_RX_DC_BASE_ADR, rows); in siena_sram_test()
106 EFX_POPULATE_OWORD_1(oword, FRF_AZ_SRM_TX_DC_BASE_ADR, rows + 1); in siena_sram_test()
114 for (wptr = 0, rptr = 0; wptr < rows; ++wptr) { in siena_sram_test()
118 if ((wptr - rptr) < 64 && wptr < rows - 1) in siena_sram_test()
136 for (wptr = 0, rptr = 0; wptr < rows; ++wptr) { in siena_sram_test()
140 if ((wptr - rptr) < 64 && wptr < rows - 1) in siena_sram_test()
/freebsd/contrib/dialog/
H A Deditbox.c63 *rows = 0; in load_list()
130 for (n = 0; n < (*rows); ++n) { in free_list()
137 *rows = 0; in free_list()
229 } else if (target >= rows) { in scroll_to()
230 if (*this_row < rows - 1) { in scroll_to()
231 *this_row = rows - 1; in scroll_to()
232 *base_row = rows - 1; in scroll_to()
245 if (pagesize < rows) { in scroll_to()
324 int *rows, in dlg_editbox() argument
765 int rows; in dialog_editbox() local
[all …]
/freebsd/contrib/cortex-strings/scripts/
H A Dplot.py15 def unique(rows, name): argument
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/contrib/bsddialog/utility/
H A Dutil_builders.c49 return (bsddialog_infobox(conf, text, rows, cols)); in infobox_builder()
57 return (bsddialog_msgbox(conf, text, rows, cols)); in msgbox_builder()
65 return (bsddialog_yesno(conf, text, rows, cols)); in yesno_builder()
74 return (bsddialog_textbox(conf, text, rows, cols)); in textbox_builder()
125 output = bsddialog_mixedgauge(conf, text, rows, cols, mainperc, in mixedgauge_builder()
142 output = bsddialog_pause(conf, text, rows, cols, &secs); in pause_builder()
198 rv = bsddialog_datebox(conf, text, rows, cols, &yy, &mm, &dd); in date()
234 if (rows == 2) in calendar_builder()
235 rows = 0; in calendar_builder()
237 return (date(conf, text, rows, cols, argc, argv, opt)); in calendar_builder()
[all …]
/freebsd/crypto/heimdal/lib/roken/
H A Drtbl.c49 struct column_entry *rows; member
109 free (c->rows[j].data); in rtbl_destroy()
110 free (c->rows); in rtbl_destroy()
144 col->rows = NULL; in rtbl_add_column_by_id()
170 tmp = realloc(table->columns[c]->rows, in rtbl_new_row()
171 max_rows * sizeof(table->columns[c]->rows)); in rtbl_new_row()
174 table->columns[c]->rows = tmp; in rtbl_new_row()
294 tmp = realloc (c->rows, (c->num_rows + 1) * sizeof (*tmp)); in add_column_entry()
299 c->rows = tmp; in add_column_entry()
300 c->rows[c->num_rows++] = row; in add_column_entry()
[all …]
/freebsd/sys/dev/syscons/
H A Dscvtb.c49 sc_vtb_init(sc_vtb_t *vtb, int type, int cols, int rows, void *buf, int wait) in sc_vtb_init() argument
54 vtb->vtb_rows = rows; in sc_vtb_init()
55 vtb->vtb_size = cols*rows; in sc_vtb_init()
62 if ((buf == NULL) && (cols*rows != 0)) { in sc_vtb_init()
64 (vm_offset_t)malloc(cols*rows*sizeof(u_int16_t), in sc_vtb_init()
69 cols*rows*sizeof(u_int16_t)); in sc_vtb_init()
112 sc_vtb_size(int cols, int rows) in sc_vtb_size() argument
114 return (size_t)(cols*rows*sizeof(u_int16_t)); in sc_vtb_size()
/freebsd/crypto/openssl/crypto/bio/
H A Dbio_dump.c34 int i, j, rows, n; in BIO_dump_indent_cb() local
44 rows = len / dump_width; in BIO_dump_indent_cb()
45 if ((rows * dump_width) < len) in BIO_dump_indent_cb()
46 rows++; in BIO_dump_indent_cb()
47 for (i = 0; i < rows; i++) { in BIO_dump_indent_cb()
/freebsd/usr.sbin/bsdconfig/timezone/
H A Dtimezone88 local height width rows
89 eval f_dialog_menu_size height width rows \
108 $height $width $rows \
365 $height $width $rows \
423 $height $width $rows \
/freebsd/sys/dev/ath/ath_hal/ar5416/
H A Dar2133.c538 + AH5416(ah)->ah_ini_bank0.rows * sizeof(uint32_t) in ar2133RfAttach()
539 + AH5416(ah)->ah_ini_bank1.rows * sizeof(uint32_t) in ar2133RfAttach()
540 + AH5416(ah)->ah_ini_bank2.rows * sizeof(uint32_t) in ar2133RfAttach()
541 + AH5416(ah)->ah_ini_bank3.rows * sizeof(uint32_t) in ar2133RfAttach()
542 + AH5416(ah)->ah_ini_bank6.rows * sizeof(uint32_t) in ar2133RfAttach()
543 + AH5416(ah)->ah_ini_bank7.rows * sizeof(uint32_t) in ar2133RfAttach()
561 priv->Bank0Data = bankData, bankData += AH5416(ah)->ah_ini_bank0.rows; in ar2133RfAttach()
562 priv->Bank1Data = bankData, bankData += AH5416(ah)->ah_ini_bank1.rows; in ar2133RfAttach()
563 priv->Bank2Data = bankData, bankData += AH5416(ah)->ah_ini_bank2.rows; in ar2133RfAttach()
564 priv->Bank3Data = bankData, bankData += AH5416(ah)->ah_ini_bank3.rows; in ar2133RfAttach()
[all …]
/freebsd/usr.sbin/bsdconfig/startup/
H A Dstartup60 local height width rows
61 eval f_dialog_menu_size height width rows \
80 $height $width $rows \
/freebsd/usr.sbin/bsdconfig/networking/
H A Dnetworking62 local height width rows
63 eval f_dialog_menu_size height width rows \
82 $height $width $rows \
/freebsd/contrib/kyua/utils/sqlite/
H A Dtest_utils.hpp136 int rows, columns; in verify_test_table() local
138 "SELECT * FROM test ORDER BY prime", &result, &rows, &columns, NULL)); in verify_test_table()
139 ATF_REQUIRE_EQ(5, rows); in verify_test_table()

12345678910