Searched refs:row (Results 1 - 25 of 181) sorted by relevance

12345678

/freebsd-current/sys/contrib/device-tree/include/dt-bindings/input/
H A Dinput.h15 #define MATRIX_KEY(row, col, code) \
16 ((((row) & 0xFF) << 24) | (((col) & 0xFF) << 16) | ((code) & 0xFFFF))
/freebsd-current/contrib/kyua/utils/text/
H A Dtable_test.cpp159 text::table_row row; local
160 row.push_back("First");
161 row.push_back("Second");
162 row.push_back("Third");
163 table.add_row(row);
166 text::table_row row; local
167 row.push_back("Fourth with some text");
168 row.push_back("Fifth with some more text");
169 row.push_back("Sixth foo");
170 table.add_row(row);
185 text::table_row row; local
190 text::table_row row; local
207 text::table_row row; local
212 text::table_row row; local
230 text::table_row row; local
235 text::table_row row; local
253 text::table_row row; local
260 text::table_row row; local
279 text::table_row row; local
286 text::table_row row; local
306 text::table_row row; local
313 text::table_row row; local
345 text::table_row row; local
351 text::table_row row; local
359 text::table_row row; local
365 text::table_row row; local
[all...]
H A Dtable.cpp141 /// of a row or not. Values in the last column should not be padded to
164 /// \param row The row containing the cell to be refilled.
165 /// \param widths The widths of the row.
171 refill_cell(const text::table_row& row, const text::widths_vector& widths,
175 const std::vector< std::string > rows = text::refill(row[column],
179 textual_rows.resize(rows.size(), text::table_row(row.size()));
182 for (text::table_row::size_type j = 0; j < row.size(); ++j) {
183 const bool is_last = j == row.size() - 1;
195 /// Formats a single table row
[all...]
/freebsd-current/usr.bin/systat/
H A Dsysput.c41 sysputspaces(WINDOW *wd, int row, int lcol, int width) argument
46 mvwaddstr(wd, row, lcol, str60 + sizeof(str60) - width - 1);
50 sysputstrs(WINDOW *wd __unused, int row, int lcol, int width) argument
58 mvwaddstr(wnd, row, lcol, str60 + sizeof(str60) - width - 1);
62 sysputXs(WINDOW *wd __unused, int row, int lcol, int width) argument
70 mvwaddstr(wnd, row, lcol, str60 + sizeof(str60) - width - 1);
74 sysputuint64(WINDOW *wd, int row, int lcol, int width, uint64_t val, int flags) argument
93 mvwaddstr(wd, row, lcol, start);
97 sysputstrs(wd, row, lcol, width);
101 sysputwuint64(WINDOW *wd, int row, in argument
110 sysputpage(WINDOW *wd, int row, int lcol, int width, uint64_t pages, int flags) argument
[all...]
H A Diostat.c162 int row; local
164 row = 0;
165 wmove(wnd, row, 0); wclrtobot(wnd);
166 mvwaddstr(wnd, row++, INSET,
168 mvwaddstr(wnd, row++, 0, "cpu user|");
169 mvwaddstr(wnd, row++, 0, " nice|");
170 mvwaddstr(wnd, row++, 0, " system|");
171 mvwaddstr(wnd, row++, 0, "interrupt|");
172 mvwaddstr(wnd, row++, 0, " idle|");
174 row
180 numlabels(int row) argument
221 barlabels(int row) argument
248 int i, row, _col; local
294 devstats(int row, int _col, int dn) argument
332 stat1(int row, int o) argument
[all...]
H A Dicmp.c104 #define L(row, str) mvwprintw(wnd, row, 10, str)
105 #define R(row, str) mvwprintw(wnd, row, 45, str);
115 #define B(row, str) L(row, str); R(row, str)
187 #define DO(stat, row, col) \
188 mvwprintw(wnd, row, col, "%9lu", stats.stat)
200 #define DO2(type, row) D
[all...]
H A Dicmp6.c103 #define L(row, str) mvwprintw(wnd, row, 10, str)
104 #define R(row, str) mvwprintw(wnd, row, 45, str);
113 #define B(row, str) L(row, str); R(row, str)
185 #define DO(stat, row, col) \
186 mvwprintw(wnd, row, col, "%9"PRIu64, stats.stat)
196 #define DO2(type, row) D
[all...]
/freebsd-current/contrib/ncurses/ncurses/base/
H A Dwresize.c57 int row; local
93 for (row = 0; row <= tst->_maxy; ++row) {
94 tst->_line[row].text = &pline[tst->_pary + row].text[tst->_parx];
110 int col, row, size_x, size_y; local
167 for (row = 0; row <= ToLines; ++row) {
[all...]
H A Dlib_inchstr.c57 int row = win->_cury; local
59 NCURSES_CH_T *text = win->_line[row].text;
H A Dlib_vline.c57 int row = win->_cury; local
59 int end = row + n - 1;
70 while (end >= row) {
/freebsd-current/contrib/ncurses/menu/
H A Dm_item_top.c45 | Function : int set_top_row(MENU *menu, int row)
47 | Description : Makes the specified row the top row in the menu
50 | E_BAD_ARGUMENT - not a menu pointer or invalid row
54 set_top_row(MENU *menu, int row) argument
58 T((T_CALLED("set_top_row(%p,%d)"), (void *)menu, row));
67 if ((row < 0) || (row > (menu->rows - menu->arows)))
73 if (row != menu->toprow)
78 item = menu->items[(menu->opt & O_ROWMAJOR) ? (row * men
[all...]
/freebsd-current/contrib/libfido2/src/
H A Dlog.c73 char row[XXDROW], xxd[XXDLEN]; local
79 snprintf(row, sizeof(row), "buf=%p, len=%zu", buf, count);
81 do_log(row, fmt, args);
83 *row = '\0';
91 strlcat(row, xxd, sizeof(row));
93 fido_log_debug("%s", row);
94 *row = '\0';
/freebsd-current/contrib/ncurses/ncurses/widechar/
H A Dlib_in_wch.c54 int row, col; local
56 getyx(win, row, col);
58 *wcval = win->_line[row].text[col];
H A Dlib_vline_set.c54 int row = win->_cury; local
56 int end = row + n - 1;
67 while (end >= row) {
H A Dlib_in_wchnstr.c54 int row, col; local
57 getyx(win, row, col);
59 src = &(win->_line[row].text[col]);
H A Dlib_inwstr.c54 int row, col; local
58 getyx(win, row, col);
60 text = win->_line[row].text;
/freebsd-current/contrib/dialog/
H A Dcolumns.c26 #define each(row, data) \
27 row = 0, data = target; \
28 row < num_rows; \
29 ++row, data = next_row(data, per_row)
105 int row; local
108 for (each(row, value)) {
123 for (each(row, value)) {
138 for (each(row, value)) {
167 int row; local
170 for (each(row, valu
[all...]
/freebsd-current/lib/libiconv_modules/MSKanji/
H A Dcitrus_mskanji.c287 _index_t col, row; local
332 row = ((_wc_t)wc >> 8) & 0xFF;
334 if (!_mskanji1(row) || !_mskanji2(col))
336 if ((ei->mode & MODE_JIS2004) == 0 || row < 0xF0) {
348 row -= offset;
349 if (row >= 0x5F)
350 row -= 0x40;
351 row = row * 2 + 0x21;
356 row
370 uint32_t col, row; local
[all...]
/freebsd-current/crypto/openssl/apps/
H A Dsrp.c95 static int update_index(CA_DB *db, char **row) argument
100 irow = app_malloc(sizeof(*irow) * (DB_NUMBER + 1), "row pointers");
102 irow[i] = row[i];
440 char **row = local
443 row[DB_srptype][0] = 'V';
447 char *row[DB_NUMBER]; local
449 row[DB_srpverifier] = NULL;
450 row[DB_srpsalt] = NULL;
451 row[DB_srpinfo] = NULL;
454 srp_create_user(user, &(row[DB_srpverifie
495 char **row = local
[all...]
/freebsd-current/contrib/llvm-project/lldb/source/Symbol/
H A DCompactUnwindInfo.cpp747 UnwindPlan::RowSP row(new UnwindPlan::Row);
753 row->GetCFAValue().SetIsRegisterPlusOffset(
756 row->SetOffset(0);
757 row->SetRegisterLocationToAtCFAPlusOffset(x86_64_eh_regnum::rbp,
759 row->SetRegisterLocationToAtCFAPlusOffset(x86_64_eh_regnum::rip,
761 row->SetRegisterLocationToIsCFAPlusOffset(x86_64_eh_regnum::rsp, 0, true);
781 row->SetRegisterLocationToAtCFAPlusOffset(
789 unwind_plan.AppendRow(row);
844 row->GetCFAValue().SetIsRegisterPlusOffset(x86_64_eh_regnum::rsp, offset);
846 row
[all...]
H A DDWARFCallFrameInfo.cpp630 UnwindPlan::RowSP row(cie_initial_row);
644 offset, *row)) {
650 // required action is to create a new table row with a location value
652 // adding (delta * code_align). All other values in the new row are
653 // initially identical to the current row.
654 unwind_plan.AppendRow(row);
656 *newrow = *row.get();
657 row.reset(newrow);
658 row->SlideOffset(extended_opcode * code_align);
676 row
821 HandleCommonDwarfOpcode(uint8_t primary_opcode, uint8_t extended_opcode, int32_t data_align, lldb::offset_t &offset, UnwindPlan::Row &row) argument
[all...]
/freebsd-current/sys/compat/linuxkpi/common/include/linux/
H A Dprintk.h56 int row; local
75 for (row = 0; row != rowsize; row++) {
/freebsd-current/sys/dev/sfxge/common/
H A Defx_sram.c209 __in size_t row,
213 size_t offset = row * FR_AZ_SRM_DBG_REG_STEP;
224 __in size_t row,
228 _NOTE(ARGUNUSED(row))
238 __in size_t row,
242 _NOTE(ARGUNUSED(row))
251 __in size_t row,
255 _NOTE(ARGUNUSED(row))
264 __in size_t row,
268 size_t offset = row * FR_AZ_SRM_DBG_REG_STE
208 efx_sram_byte_increment_set( __in size_t row, __in boolean_t negate, __out efx_qword_t *eqp) argument
223 efx_sram_all_the_same_set( __in size_t row, __in boolean_t negate, __out efx_qword_t *eqp) argument
237 efx_sram_bit_alternate_set( __in size_t row, __in boolean_t negate, __out efx_qword_t *eqp) argument
250 efx_sram_byte_alternate_set( __in size_t row, __in boolean_t negate, __out efx_qword_t *eqp) argument
263 efx_sram_byte_changing_set( __in size_t row, __in boolean_t negate, __out efx_qword_t *eqp) argument
284 efx_sram_bit_sweep_set( __in size_t row, __in boolean_t negate, __out efx_qword_t *eqp) argument
[all...]
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/UnwindAssembly/x86/
H A Dx86AssemblyInspectionEngine.cpp916 UnwindPlan::RowSP row(new UnwindPlan::Row);
923 row->SetOffset(current_func_text_offset);
924 row->GetCFAValue().SetIsRegisterPlusOffset(m_lldb_sp_regnum, m_wordsize);
928 row->SetRegisterInfo(m_lldb_sp_regnum, initial_regloc);
933 row->SetRegisterInfo(m_lldb_ip_regnum, initial_regloc);
935 unwind_plan.AppendRow(row);
939 *newrow = *row.get();
940 row.reset(newrow);
953 UnwindPlan::RowSP prologue_completed_row; // copy of prologue row of CFI
966 bool row_updated = false; // The UnwindPlan::Row 'row' ha
[all...]
/freebsd-current/contrib/llvm-project/clang/lib/Headers/
H A Damxintrin.h30 /// number of bytes per row, and the number of rows. If the specified
48 /// palette, the number of bytes per row, and the number of rows. If tiles
307 const unsigned short row; member in struct:__tile1024i_str
328 dst->tile = _tile_loadd_internal(dst->row, dst->col, base, stride);
349 dst->tile = _tile_loaddt1_internal(dst->row, dst->col, base, stride);
371 dst->tile = _tile_dpbssd_internal(src0.row, src1.col, src0.col, dst->tile,
394 dst->tile = _tile_dpbsud_internal(src0.row, src1.col, src0.col, dst->tile,
417 dst->tile = _tile_dpbusd_internal(src0.row, src1.col, src0.col, dst->tile,
440 dst->tile = _tile_dpbuud_internal(src0.row, src1.col, src0.col, dst->tile,
458 _tile_stored_internal(src.row, sr
[all...]

Completed in 153 milliseconds

12345678