Home
last modified time | relevance | path

Searched full:rows (Results 1 – 25 of 474) sorted by relevance

12345678910>>...19

/freebsd/contrib/llvm-project/llvm/lib/Support/BLAKE3/
H A Dblake3_sse2.c89 INLINE void compress_pre(__m128i rows[4], const uint32_t cv[8], in compress_pre()
92 rows[0] = loadu((uint8_t *)&cv[0]); in compress_pre()
93 rows[1] = loadu((uint8_t *)&cv[4]); in compress_pre()
94 rows[2] = set4(IV[0], IV[1], IV[2], IV[3]); in compress_pre()
95 rows[3] = set4(counter_low(counter), counter_high(counter), in compress_pre()
108 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()
111 diagonalize(&rows[0], &rows[2], &rows[3]); 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()
[all …]
H A Dblake3_sse41.c83 INLINE void compress_pre(__m128i rows[4], const uint32_t cv[8], in compress_pre()
86 rows[0] = loadu((uint8_t *)&cv[0]); in compress_pre()
87 rows[1] = loadu((uint8_t *)&cv[4]); in compress_pre()
88 rows[2] = set4(IV[0], IV[1], IV[2], IV[3]); in compress_pre()
89 rows[3] = set4(counter_low(counter), counter_high(counter), in compress_pre()
102 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()
105 diagonalize(&rows[0], &rows[2], &rows[3]); 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()
[all …]
H A Dblake3_avx512.c116 INLINE void compress_pre(__m128i rows[4], const uint32_t cv[8], in compress_pre()
119 rows[0] = loadu_128((uint8_t *)&cv[0]); in compress_pre()
120 rows[1] = loadu_128((uint8_t *)&cv[4]); in compress_pre()
121 rows[2] = set4(IV[0], IV[1], IV[2], IV[3]); in compress_pre()
122 rows[3] = set4(counter_low(counter), counter_high(counter), in compress_pre()
135 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()
138 diagonalize(&rows[0], &rows[2], &rows[3]); 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()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/PBQP/
H A DMath.h127 Matrix(unsigned Rows, unsigned Cols) : in Matrix() argument
128 Rows(Rows), Cols(Cols), Data(std::make_unique<PBQPNum []>(Rows * Cols)) { in Matrix()
133 Matrix(unsigned Rows, unsigned Cols, PBQPNum InitVal) in Matrix() argument
134 : Rows(Rows), Cols(Cols), in Matrix()
135 Data(std::make_unique<PBQPNum []>(Rows * Cols)) { in Matrix()
136 std::fill(Data.get(), Data.get() + (Rows * Cols), InitVal); in Matrix()
141 : Rows(M.Rows), Cols(M.Cols), in Matrix()
142 Data(std::make_unique<PBQPNum []>(Rows * Cols)) { in Matrix()
143 std::copy(M.Data.get(), M.Data.get() + (Rows * Cols), Data.get()); in Matrix()
148 : Rows(M.Rows), Cols(M.Cols), Data(std::move(M.Data)) { in Matrix()
[all …]
/freebsd/contrib/ncurses/menu/
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) in MENU_EXPORT()
63 T((T_CALLED("set_menu_format(%p,%d,%d)"), (void *)menu, rows, cols)); in MENU_EXPORT()
65 if (rows < 0 || cols < 0) in MENU_EXPORT()
78 if (rows == 0) in MENU_EXPORT()
79 rows = menu->frows; in MENU_EXPORT()
86 menu->frows = (short)rows; in MENU_EXPORT()
89 assert(rows > 0 && cols > 0); in MENU_EXPORT()
[all …]
/freebsd/contrib/bsddialog/lib/
H A Dbsddialog.h190 bsddialog_calendar(struct bsddialog_conf *conf, const char *text, int rows,
194 bsddialog_checklist(struct bsddialog_conf *conf, const char *text, int rows,
199 bsddialog_datebox(struct bsddialog_conf *conf, const char *text, int rows,
203 bsddialog_form(struct bsddialog_conf *conf, const char *text, int rows,
208 bsddialog_gauge(struct bsddialog_conf *conf, const char *text, int rows,
212 bsddialog_infobox(struct bsddialog_conf *conf, const char *text, int rows,
216 bsddialog_menu(struct bsddialog_conf *conf, const char *text, int rows,
221 bsddialog_mixedgauge(struct bsddialog_conf *conf, const char *text, int rows,
226 bsddialog_mixedlist(struct bsddialog_conf *conf, const char *text, int rows,
231 bsddialog_msgbox(struct bsddialog_conf *conf, const char *text, int rows,
[all …]
H A Dbsddialog.374 .Fa "int rows"
84 .Fa "int rows"
97 .Fa "int rows"
109 .Fa "int rows"
120 .Fa "int rows"
133 .Fa "int rows"
148 .Fa "int rows"
159 .Fa "int rows"
170 .Fa "int rows"
182 .Fa "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.c679 text_size(struct bsddialog_conf *conf, int rows, int cols, const char *text, in text_size() argument
690 /* Rows */ in text_size()
691 if (rows == BSDDIALOG_AUTOSIZE || rows == BSDDIALOG_FULLSCREEN) { in text_size()
694 maxhtext = rows - BORDERS - rowsnotext; in text_size()
800 set_widget_size(struct bsddialog_conf *conf, int rows, int cols, int *h, int *w) in set_widget_size() argument
807 if (rows == BSDDIALOG_FULLSCREEN) in set_widget_size()
809 else if (rows < BSDDIALOG_FULLSCREEN) in set_widget_size()
811 else if (rows > BSDDIALOG_AUTOSIZE) /* fixed rows */ in set_widget_size()
812 *h = MIN(rows, maxheight); /* rows is at most maxheight */ in set_widget_size()
813 /* rows == AUTOSIZE: each widget has to set its size */ in set_widget_size()
[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()
100 sp->rows = half; /* Old. */ in vs_split()
101 sp->roff += new->rows; in vs_split()
107 memcpy(_HMAP(sp), _HMAP(sp) + new->rows, in vs_split()
108 (sp->t_maxrows - new->rows) * sizeof(SMAP)); in vs_split()
110 new->rows = half; /* New. */ in vs_split()
111 sp->rows -= half; /* Old. */ in vs_split()
112 new->roff = sp->roff + sp->rows; in vs_split()
[all …]
/freebsd/contrib/bsddialog/utility/
H A Dbsddialog.138 .Ar rows
68 .Ar rows
470 .It Fl Fl calendar Ar text Ar rows Ar cols Op Ar day Ar month Ar year
472 .It Fl Fl checklist Ar text Ar rows Ar cols Ar menurows Oo Ar name Ar desc \
487 .It Fl Fl datebox Ar text Ar rows Ar cols Op Ar day Ar month Ar year
489 .It Fl Fl form Ar text Ar rows Ar cols Ar formrows Oo Ar label Ar ylabel \
521 .It Fl Fl gauge Ar text Ar rows Ar cols Op Ar percentage
533 .It Fl Fl infobox Ar text Ar rows Ar cols
535 .It Fl Fl inputbox Ar text Ar rows Ar cols Op Ar init
539 .It Fl Fl menu Ar text Ar rows Ar cols Ar menurows Oo Ar name desc Oc ...
[all …]
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()
91 output = bsddialog_gauge(conf, text, rows, cols, perc, STDIN_FILENO, in gauge_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()
166 output = bsddialog_rangebox(conf, text, rows, cols, min, max, &value); in rangebox_builder()
198 rv = bsddialog_datebox(conf, text, rows, cols, &yy, &mm, &dd); in date()
200 rv = bsddialog_calendar(conf, text, rows, cols, &yy, &mm, &dd); in date()
[all …]
H A Dutil_cli.c280 printf(" bsddialog [--<opt>] --<dialog> <text> <rows> <cols> " in usage()
321 printf(" --calendar <text> <rows> <cols> [<dd> <mm> <yy>]\n"); in usage()
322 printf(" --checklist <text> <rows> <cols> <menurows> [<name> <desc> " in usage()
324 printf(" --datebox <text> <rows> <cols> [<dd> <mm> <yy>]\n"); in usage()
325 printf(" --form <text> <rows> <cols> <formrows> [<label> <ylabel> " in usage()
328 printf(" --gauge <text> <rows> <cols> [<perc>]\n"); in usage()
329 printf(" --infobox <text> <rows> <cols>\n"); in usage()
330 printf(" --inputbox <text> <rows> <cols> [<init>]\n"); in usage()
331 printf(" --menu <text> <rows> <cols> <menurows> [<name> <desc>] ...\n"); in usage()
332 printf(" --mixedform <text> <rows> <cols> <formrows> [<label> <ylabel> " in usage()
[all …]
/freebsd/tools/pkgbase/
H A Dmetalog_reader.lua216 --- @param rows MetalogRow[]
219 function metalogrows_all_equal(rows, ignore_name, ignore_tags)
234 for _, v in ipairs(rows) do
235 local bol, offby = __eq(v, rows[1])
283 local rows = files[filename]
285 -- if these rows are equal, there should be warning, but it
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
[all …]
/freebsd/sys/contrib/device-tree/Bindings/input/
H A Dadi,adp5588.yaml43 This property applies if either keypad,num-rows lower than 8 or
51 This property applies if either keypad,num-rows lower than 8 or
53 keypad,num-rows or keypad,num-columns are not specified as the
66 or equal than keypad,num-rows * keypad,num-columns.
72 keypad,num-rows:
77 - keypad,num-rows
79 - keypad,num-rows
109 keypad,num-rows = <1>;
/freebsd/contrib/dialog/
H A Deditbox.c56 load_list(const char *file, char ***list, int *rows) in load_list() argument
63 *rows = 0; in load_list()
118 grow_list(list, rows, (int) need + 1); in load_list()
126 free_list(char ***list, int *rows) in free_list() argument
130 for (n = 0; n < (*rows); ++n) { in free_list()
137 *rows = 0; in free_list()
211 scroll_to(int pagesize, int rows, int *base_row, int *this_row, int target) in scroll_to() argument
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()
[all …]
/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/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFUnitIndex.cpp126 Rows.reset(); in parse()
145 Rows = std::make_unique<Entry[]>(Header.NumBuckets); in parseImpl()
153 Rows[i].Signature = IndexData.getU64(&Offset); in parseImpl()
160 Rows[i].Index = this; in parseImpl()
161 Rows[i].Contributions = in parseImpl()
163 Contribs[Index - 1] = Rows[i].Contributions.get(); in parseImpl()
242 auto &Row = Rows[i]; in dump()
286 if (Rows[i].Contributions) in getFromOffset()
287 OffsetLookup.push_back(&Rows[i]); in getFromOffset()
313 while (Rows[H].getSignature() != S && Rows[H].Index != nullptr) in getFromHash()
[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()
193 column->width = max (column->width, (int) strlen (column->rows[i].data)); in column_compute_width()
294 tmp = realloc (c->rows, (c->num_rows + 1) * sizeof (*tmp)); in add_column_entry()
299 c->rows = tmp; in add_column_entry()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DMatrixBuilder.h63 /// \p Rows - Number of rows in matrix (must be a constant)
67 Value *Stride, bool IsVolatile, unsigned Rows,
69 auto *RetType = FixedVectorType::get(EltTy, Rows * Columns);
71 Value *Ops[] = {DataPtr, Stride, B.getInt1(IsVolatile), B.getInt32(Rows),
91 unsigned Rows, unsigned Columns,
95 B.getInt32(Rows), B.getInt32(Columns)};
108 /// Create a llvm.matrix.transpose call, transposing \p Matrix with \p Rows
109 /// rows and \p Columns columns.
110 CallInst *CreateMatrixTranspose(Value *Matrix, unsigned Rows,
114 FixedVectorType::get(OpType->getElementType(), Rows * Columns);
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86FastTileConfig.cpp140 // 48 tile0.rows Tile 0 rows. in configBasicBlock()
141 // 49 tile1.rows Tile 1 rows. in configBasicBlock()
142 // 50 tile2.rows Tile 2 rows. in configBasicBlock()
144 // 55 tile7.rows Tile 7 rows. in configBasicBlock()
H A DX86TileConfig.cpp157 // 48 tile0.rows Tile 0 rows. in INITIALIZE_PASS_DEPENDENCY()
158 // 49 tile1.rows Tile 1 rows. in INITIALIZE_PASS_DEPENDENCY()
159 // 50 tile2.rows Tile 2 rows. in INITIALIZE_PASS_DEPENDENCY()
161 // 55 tile7.rows Tile 7 rows. in INITIALIZE_PASS_DEPENDENCY()
/freebsd/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) in FORM_EXPORT()
53 (void *)rows, in FORM_EXPORT()
62 if (rows) in FORM_EXPORT()
63 *rows = form->rows; in FORM_EXPORT()
/freebsd/usr.sbin/bsdconfig/usermgmt/share/
H A Dgroup_input.subr94 local height width rows
95 eval f_dialog_menu_size height width rows \
111 $height $width $rows \
443 local height width rows
444 eval f_dialog_menu_size height width rows \
460 $height $width $rows \
505 local height width rows
506 eval f_dialog_menu_size height width rows \
522 $height $width $rows \
564 local height width rows
[all …]
/freebsd/usr.sbin/bsdinstall/scripts/
H A Dfirmware38 local height width rows msg
43 eval f_dialog_checklist_size height width rows \
59 local desc status height width rows selected retval
71 eval f_dialog_checklist_size height width rows \
86 $height $width $rows \

12345678910>>...19