Home
last modified time | relevance | path

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

123456

/openbsd-src/gnu/llvm/llvm/lib/Support/BLAKE3/
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_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_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 …]
/openbsd-src/lib/libmenu/
H A Dm_format.c62 set_menu_format(MENU *menu, int rows, int cols) in MENU_EXPORT()
65 T((T_CALLED("set_menu_format(%p,%d,%d)"), (void *)menu, rows, cols)); in MENU_EXPORT()
67 if (rows < 0 || cols < 0) in MENU_EXPORT()
80 if (rows == 0) in MENU_EXPORT()
81 rows = menu->frows; in MENU_EXPORT()
88 menu->frows = (short)rows; in MENU_EXPORT()
91 assert(rows > 0 && cols > 0); in MENU_EXPORT()
97 menu->rows = (short)total_rows; in MENU_EXPORT()
99 menu->arows = (short)minimum(total_rows, rows); in MENU_EXPORT()
108 if (rows > 0) in MENU_EXPORT()
[all …]
H A Dm_scale.c57 scale_menu(const MENU *menu, int *rows, int *cols) in MENU_EXPORT()
61 (void *)rows, in MENU_EXPORT()
69 if (rows) in MENU_EXPORT()
70 *rows = menu->height; in MENU_EXPORT()
H A Dm_global.c420 Last_in_Column = (menu->rows - 1) * Number_Of_Columns + col; in _nc_Link_Items()
431 (cycle ? menu->items[(row + 1) < menu->rows ? in _nc_Link_Items()
445 int Number_Of_Rows = menu->rows; in _nc_Link_Items()
572 menu->toprow = (short)(((menu->rows - menu->frows) >= 0) in _nc_New_TopRow_and_CurrentItem()
573 ? min(menu->rows - menu->frows, new_toprow) in _nc_New_TopRow_and_CurrentItem()
596 menu->toprow = (short)(((menu->rows - menu->frows) >= 0) in _nc_New_TopRow_and_CurrentItem()
597 ? min(menu->rows - menu->frows, new_toprow) in _nc_New_TopRow_and_CurrentItem()
/openbsd-src/usr.bin/vi/vi/
H A Dvs_split.c48 if (sp->rows < 4) { in vs_split()
57 half = sp->rows / 2; in vs_split()
91 new->rows = sp->rows - half; /* New. */ in vs_split()
93 sp->rows = half; /* Old. */ in vs_split()
94 sp->woff += new->rows; in vs_split()
102 memmove(_HMAP(sp), _HMAP(sp) + new->rows, in vs_split()
103 (sp->t_maxrows - new->rows) * sizeof(SMAP)); in vs_split()
105 new->rows = half; /* New. */ in vs_split()
106 sp->rows -= half; /* Old. */ in vs_split()
107 new->woff = sp->woff + sp->rows; in vs_split()
[all …]
/openbsd-src/lib/libform/
H A Dfrm_scale.c50 scale_form(const FORM *form, int *rows, int *cols) in FORM_EXPORT()
54 (void *)rows, in FORM_EXPORT()
63 if (rows) in FORM_EXPORT()
64 *rows = form->rows; in FORM_EXPORT()
H A Dfld_info.c53 int *rows, int *cols, in FORM_EXPORT()
59 (void *)rows, (void *)cols, in FORM_EXPORT()
66 if (rows) in FORM_EXPORT()
67 *rows = field->rows; in FORM_EXPORT()
H A Dfld_def.c277 new_field(int rows, int cols, int frow, int fcol, int nrow, int nbuf) in new_field() argument
285 T((T_CALLED("new_field(%d,%d,%d,%d,%d,%d)"), rows, cols, frow, fcol, nrow, nbuf)); in new_field()
286 if (rows > 0 && in new_field()
297 New_Field->rows = (short)rows; in new_field()
299 New_Field->drows = rows + nrow; in new_field()
/openbsd-src/gnu/llvm/lldb/third_party/Python/module/pexpect-4.6/pexpect/
H A Dscreen.py88 self.rows = r
101 self.scroll_row_end = self.rows
102 self.w = [ [SPACE] * self.cols for _ in range(self.rows)]
151 self.fill_region (1,1,self.rows,self.cols, ch)
158 rs = constrain (rs, 1, self.rows)
159 re = constrain (re, 1, self.rows)
203 r = constrain (r, 1, self.rows)
229 r = constrain (r, 1, self.rows)
244 r = constrain (r, 1, self.rows)
256 rs = constrain (rs, 1, self.rows)
[all …]
/openbsd-src/gnu/llvm/clang/tools/scan-build/share/scan-build/
H A Dsorttable.js47 the.appendChild(table.rows[0]);
53 if (table.tHead.rows.length != 1) return; // can't cope with two header rows
60 for (var i=0; i<table.rows.length; i++) {
61 if (table.rows[i].className.search(/\bsortbottom\b/) != -1) {
62 sortbottomrows[sortbottomrows.length] = table.rows[i];
78 headrow = table.tHead.rows[0].cells;
146 rows = this.sorttable_tbody.rows;
147 for (var j=0; j<rows.length; j++) {
148 row_array[row_array.length] = [sorttable.getInnerText(rows[j].cells[col]), rows[j]];
169 for (var i=0; i<table.tBodies[0].rows.length; i++) {
[all …]
/openbsd-src/gnu/llvm/clang/tools/scan-build-py/lib/libscanbuild/resources/
H A Dsorttable.js48 the.appendChild(table.rows[0]);
55 if (table.tHead.rows.length != 1)
63 for (var i = 0; i < table.rows.length; i++) {
64 if (table.rows[i].className.search(/\bsortbottom\b/) != -1) {
65 sortbottomrows[sortbottomrows.length] = table.rows[i];
81 headrow = table.tHead.rows[0].cells;
161 rows = this.sorttable_tbody.rows;
162 for (var j = 0; j < rows.length; j++) {
164 [ sorttable.getInnerText(rows[j].cells[col]), rows[j] ];
185 for (var i = 0; i < table.tBodies[0].rows.length; i++) {
[all …]
/openbsd-src/gnu/llvm/clang/tools/scan-build-py/libscanbuild/resources/
H A Dsorttable.js47 the.appendChild(table.rows[0]);
53 if (table.tHead.rows.length != 1) return; // can't cope with two header rows
60 for (var i=0; i<table.rows.length; i++) {
61 if (table.rows[i].className.search(/\bsortbottom\b/) != -1) {
62 sortbottomrows[sortbottomrows.length] = table.rows[i];
78 headrow = table.tHead.rows[0].cells;
146 rows = this.sorttable_tbody.rows;
147 for (var j=0; j<rows.length; j++) {
148 row_array[row_array.length] = [sorttable.getInnerText(rows[j].cells[col]), rows[j]];
169 for (var i=0; i<table.tBodies[0].rows.length; i++) {
[all …]
/openbsd-src/gnu/lib/libreadline/
H A Dterminal.c250 _rl_set_screen_size (rows, cols) in _rl_set_screen_size() argument
251 int rows, cols; in _rl_set_screen_size()
253 if (rows == 0 || cols == 0)
256 _rl_screenheight = rows;
266 rl_set_screen_size (rows, cols) in rl_set_screen_size() argument
267 int rows, cols; in rl_set_screen_size()
269 _rl_set_screen_size (rows, cols);
273 rl_get_screen_size (rows, cols) in rl_get_screen_size() argument
274 int *rows, *cols; in rl_get_screen_size()
276 if (rows)
[all …]
/openbsd-src/gnu/usr.bin/perl/t/io/
H A Dopen.t71 my @rows = <$f>;
72 is( scalar @rows, 2, ' readline, list context' );
73 is( $rows[0], "a row\n", ' first line read' );
74 is( $rows[1], "a row\n", ' second line' );
83 my @rows = <$f>;
84 is( scalar @rows, 2, ' readline, list context' );
98 my @rows = <$f>;
99 is( scalar @rows, 2, ' readline, list context' );
108 my @rows = <$f>;
178 my @rows
[all...]
/openbsd-src/gnu/llvm/clang/docs/
H A DMatrixTypes.rst24 number of *rows*, and a constant number of *columns*. Matrix types with the same
25 element type, rows, and columns are the same type. A value of a matrix type
26 includes storage for ``rows * columns`` values of the *element type*. The
29 The maximum of the product of the number of rows and columns is
50 number of rows, and the second specifies the number of columns. The underlying
56 same element type, number of rows, and number of columns.
67 rows and columns are the same and the value's elements can be converted to the
75 If the number of rows or columns differ between the original and resulting
96 of ``M``, and let ``R`` and ``C`` be the number of rows and columns in ``M``
114 or rows can be done efficiently, but not both. Instead, we propose to provide
[all …]
/openbsd-src/usr.bin/tmux/
H A Dlayout-set.c590 u_int i, j, columns, rows;
599 /* How many rows and columns are wanted? */
600 rows = columns = 1;
601 while (rows * columns < n) {
602 rows++;
603 if (rows * columns < n)
611 height = (w->sy - (rows - 1)) / rows;
621 sy = ((height + 1) * rows) - 1;
629 for (j = 0; j < rows;
386 u_int i, j, columns, rows; layout_set_tiled() local
[all...]
/openbsd-src/sys/dev/pci/bktr/
H A Dbktr_core.c321 int rows, int interlace );
323 int rows, int interlace );
325 int rows, int interlace );
327 int rows, int interlace );
329 int rows, int interlace );
406 bktr->rows = 480; in common_bktr_attach()
1007 count = bktr->rows * bktr->cols * in video_read()
1521 if (geo->rows <= 0) { in video_ioctl()
1524 bktr_name(bktr), geo->rows); in video_ioctl()
1527 else if (((geo->rows & 0x7fe) != geo->rows) || in video_ioctl()
[all …]
/openbsd-src/gnu/gcc/gcc/
H A Dmodulo-sched.c137 ps_insn_ptr *rows; member
619 ps_insn_ptr cur_insn = ps->rows[row]; in set_columns_for_ps()
638 for (ps_ij = ps->rows[row]; ps_ij; ps_ij = ps_ij->next_in_row) in permute_partial_schedule()
674 for (ps_ij = ps->rows[row]; ps_ij; ps_ij = ps_ij->next_in_row) in duplicate_insns_of_cycles()
2007 ps->rows = (ps_insn_ptr *) xcalloc (ii, sizeof (ps_insn_ptr)); in create_partial_schedule()
2026 while (ps->rows[i]) in free_ps_insns()
2028 ps_insn_ptr ps_insn = ps->rows[i]->next_in_row; in free_ps_insns()
2030 free (ps->rows[i]); in free_ps_insns()
2031 ps->rows[i] = ps_insn; in free_ps_insns()
2033 ps->rows[i] = NULL; in free_ps_insns()
[all …]
/openbsd-src/gnu/llvm/libcxx/docs/Status/
H A DRanges.rst31 :header-rows: 1
39 :header-rows: 1
47 :header-rows: 1
/openbsd-src/sys/dev/
H A Dspdmem.c376 uint8_t rows, cols; in spdmem_sdram_decode() local
387 rows = s->sm_data[SPDMEM_SDR_ROWS] & 0x0f; in spdmem_sdram_decode()
389 dimm_size = (1 << (rows + cols - 17)) * num_banks * per_chip; in spdmem_sdram_decode()
475 uint8_t config, rows, cols, cl; in spdmem_ddr_decode() local
484 rows = s->sm_data[SPDMEM_SDR_ROWS] & 0x0f; in spdmem_ddr_decode()
486 dimm_size = (1 << (rows + cols - 17)) * num_banks * per_chip; in spdmem_ddr_decode()
620 uint8_t rows, cols, dividend, divisor; in spdmem_fbdimm_decode() local
627 rows = (s->sm_data[SPDMEM_FBDIMM_ADDR] & SPDMEM_FBDIMM_ADDR_ROW) >> in spdmem_fbdimm_decode()
629 dimm_size = rows + 12 + cols + 9 - 20 - 3; in spdmem_fbdimm_decode()
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.law/
H A Doperators32.C10 void ffree(long rows, T** array) in ffree() argument
12 for( long i = 0; i < rows; i++ ) in ffree()
/openbsd-src/usr.bin/mandoc/
H A Deqn_html.c38 size_t i, j, rows; in eqn_box() local
64 for (rows = 0; NULL != child; rows++) in eqn_box()
68 for (i = 0; i < rows; i++) { in eqn_box()
/openbsd-src/sys/arch/armv7/exynos/
H A Dcrosec_kbd.c130 sc->keyboard.rows = info.rows; in cros_ec_init_keyboard()
133 sc->keyboard.state = (uint8_t *)malloc(info.rows*info.cols, in cros_ec_init_keyboard()
181 for (row = 0; row < sc->keyboard.rows; row++) { in cros_ec_get_keystate()

123456