Home
last modified time | relevance | path

Searched full:row (Results 1 – 25 of 717) sorted by relevance

12345678910>>...29

/openbsd-src/lib/libcurses/base/
H A Dwresize.c59 int row; in repair_subwindows() local
95 for (row = 0; row <= tst->_maxy; ++row) { in repair_subwindows()
96 tst->_line[row].text = &pline[tst->_pary + row].text[tst->_parx]; in repair_subwindows()
112 int col, row, size_x, size_y; in wresize() local
169 for (row = 0; row <= ToLines; ++row) { in wresize()
170 int begin = (row > size_y) ? 0 : (size_x + 1); in wresize()
175 if (row <= size_y) { in wresize()
179 returnCode(cleanup_lines(new_lines, row)); in wresize()
185 && isWidecBase(win->_line[row].text[col])) { in wresize()
190 ? win->_line[row].text[col] in wresize()
[all …]
/openbsd-src/gnu/llvm/llvm/utils/
H A Dllvm-original-di-preservation.py83 row = []
87 row.append(" <tr>\n")
88 row.append(file)
89 row.append(llvm_pass)
90 row.append(x.instr)
91 row.append(x.fn_name)
92 row.append(x.bb_name)
93 row.append(x.action)
94 row.append(" </tr>\n")
96 for column in row:
[all …]
/openbsd-src/share/snmp/
H A DSNMPv2-TC.txt152 a conceptual row of a MIB table in the managed device. In
155 in the conceptual row.
171 "Represents a pointer to a conceptual row. The value is the
173 in the conceptual row.
175 For example, ifIndex.3 would point to the 3rd row in the
186 conceptual row (as described in Section 7.7.1 of [2].)
190 - `active', which indicates that the conceptual row is
194 row exists in the agent, but is unavailable for use by
197 the row, availability of resources, or consistency with
200 - `notReady', which indicates that the conceptual row
[all …]
/openbsd-src/gnu/llvm/lldb/source/Symbol/
H A DDWARFCallFrameInfo.cpp628 UnwindPlan::Row *cie_initial_row = new UnwindPlan::Row; in FDEToUnwindPlan()
630 UnwindPlan::RowSP row(cie_initial_row); in FDEToUnwindPlan() local
637 UnwindPlan::Row::RegisterLocation reg_location; in FDEToUnwindPlan()
644 offset, *row)) { in FDEToUnwindPlan()
647 case DW_CFA_advance_loc: // (Row Creation Instruction) in FDEToUnwindPlan()
650 // required action is to create a new table row with a location value in FDEToUnwindPlan()
652 // adding (delta * code_align). All other values in the new row are in FDEToUnwindPlan()
653 // initially identical to the current row. in FDEToUnwindPlan()
654 unwind_plan.AppendRow(row); in FDEToUnwindPlan()
655 UnwindPlan::Row *newrow = new UnwindPlan::Row; in FDEToUnwindPlan()
[all …]
H A DCompactUnwindInfo.cpp747 UnwindPlan::RowSP row(new UnwindPlan::Row); in CreateUnwindPlan_x86_64() local
753 row->GetCFAValue().SetIsRegisterPlusOffset( in CreateUnwindPlan_x86_64()
756 row->SetOffset(0); in CreateUnwindPlan_x86_64()
757 row->SetRegisterLocationToAtCFAPlusOffset(x86_64_eh_regnum::rbp, in CreateUnwindPlan_x86_64()
759 row->SetRegisterLocationToAtCFAPlusOffset(x86_64_eh_regnum::rip, in CreateUnwindPlan_x86_64()
761 row->SetRegisterLocationToIsCFAPlusOffset(x86_64_eh_regnum::rsp, 0, true); in CreateUnwindPlan_x86_64()
781 row->SetRegisterLocationToAtCFAPlusOffset( in CreateUnwindPlan_x86_64()
789 unwind_plan.AppendRow(row); in CreateUnwindPlan_x86_64()
844 row->GetCFAValue().SetIsRegisterPlusOffset(x86_64_eh_regnum::rsp, offset); in CreateUnwindPlan_x86_64()
846 row->SetOffset(0); in CreateUnwindPlan_x86_64()
[all …]
H A DUnwindPlan.cpp25 bool UnwindPlan::Row::RegisterLocation::
26 operator==(const UnwindPlan::Row::RegisterLocation &rhs) const { in operator ==()
56 void UnwindPlan::Row::RegisterLocation::SetAtDWARFExpression( in SetAtDWARFExpression()
65 void UnwindPlan::Row::RegisterLocation::SetIsDWARFExpression( in SetIsDWARFExpression()
93 void UnwindPlan::Row::RegisterLocation::Dump(Stream &s, in Dump()
95 const UnwindPlan::Row *row, in Dump() argument
168 bool UnwindPlan::Row::FAValue::
169 operator==(const UnwindPlan::Row::FAValue &rhs) const { in operator ==()
192 void UnwindPlan::Row::FAValue::Dump(Stream &s, const UnwindPlan *unwind_plan, in Dump()
217 void UnwindPlan::Row::Clear() { in Clear()
[all …]
/openbsd-src/gnu/llvm/llvm/include/llvm/ADT/
H A Dedit_distance.h56 // array, only one row plus one element are used at a time, so this
57 // implementation just keeps one vector for the row. To update one entry,
59 // entry is in Row[x-1], the top entry is what's in Row[x] from the last
76 unsigned *Row = SmallBuffer; variable
78 Row = new unsigned[n + 1];
79 Allocated.reset(Row);
83 Row[i] = i;
86 Row[0] = y;
87 unsigned BestThisRow = Row[0];
92 int OldRow = Row[x];
[all …]
/openbsd-src/gnu/llvm/lldb/source/Plugins/UnwindAssembly/x86/
H A Dx86AssemblyInspectionEngine.cpp927 UnwindPlan::Row::RegisterLocation initial_regloc; in GetNonCallSiteUnwindPlanFromAssembly()
928 UnwindPlan::RowSP row(new UnwindPlan::Row); in GetNonCallSiteUnwindPlanFromAssembly() local
935 row->SetOffset(current_func_text_offset); in GetNonCallSiteUnwindPlanFromAssembly()
936 row->GetCFAValue().SetIsRegisterPlusOffset(m_lldb_sp_regnum, m_wordsize); in GetNonCallSiteUnwindPlanFromAssembly()
940 row->SetRegisterInfo(m_lldb_sp_regnum, initial_regloc); in GetNonCallSiteUnwindPlanFromAssembly()
945 row->SetRegisterInfo(m_lldb_ip_regnum, initial_regloc); in GetNonCallSiteUnwindPlanFromAssembly()
947 unwind_plan.AppendRow(row); in GetNonCallSiteUnwindPlanFromAssembly()
949 // Allocate a new Row, populate it with the existing Row contents. in GetNonCallSiteUnwindPlanFromAssembly()
950 UnwindPlan::Row *newrow = new UnwindPlan::Row; in GetNonCallSiteUnwindPlanFromAssembly()
951 *newrow = *row.get(); in GetNonCallSiteUnwindPlanFromAssembly()
[all …]
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.law/
H A Dcode-gen5.C57 int row; /* Row element refers to */ variable
74 int row() const { return 19; } in row() function
107 Vector( int row ) in Vector() argument
109 assert( row > 0 ); in Vector()
111 r = new VectorInt( row ); in Vector()
117 Vector( int row, double *d, int beg ) in Vector() argument
119 assert( row > 0 ); in Vector()
121 r = new VectorInt( row, d, beg ); in Vector()
143 operator()( int row ) const in operator()
164 if( rownum > row() || rownum <= 0 ) { in assign()
[all …]
/openbsd-src/gnu/llvm/lldb/source/Plugins/Platform/Linux/
H A DPlatformLinux.cpp213 UnwindPlan::RowSP row = std::make_shared<UnwindPlan::Row>(); in GetAArch64TrapHanlderUnwindPlan() local
214 row->SetOffset(0); in GetAArch64TrapHanlderUnwindPlan()
238 row->GetCFAValue().SetIsRegisterPlusOffset(arm64_dwarf::sp, offset); in GetAArch64TrapHanlderUnwindPlan()
240 row->SetRegisterLocationToAtCFAPlusOffset(arm64_dwarf::x0, 0 * 8, false); in GetAArch64TrapHanlderUnwindPlan()
241 row->SetRegisterLocationToAtCFAPlusOffset(arm64_dwarf::x1, 1 * 8, false); in GetAArch64TrapHanlderUnwindPlan()
242 row->SetRegisterLocationToAtCFAPlusOffset(arm64_dwarf::x2, 2 * 8, false); in GetAArch64TrapHanlderUnwindPlan()
243 row->SetRegisterLocationToAtCFAPlusOffset(arm64_dwarf::x3, 3 * 8, false); in GetAArch64TrapHanlderUnwindPlan()
244 row->SetRegisterLocationToAtCFAPlusOffset(arm64_dwarf::x4, 4 * 8, false); in GetAArch64TrapHanlderUnwindPlan()
245 row->SetRegisterLocationToAtCFAPlusOffset(arm64_dwarf::x5, 5 * 8, false); in GetAArch64TrapHanlderUnwindPlan()
246 row->SetRegisterLocationToAtCFAPlusOffset(arm64_dwarf::x6, 6 * 8, false); in GetAArch64TrapHanlderUnwindPlan()
[all …]
/openbsd-src/games/hunt/hunt/
H A Dotto.c122 static int row, col; variable
152 row = y; col = x; in otto()
153 been_there[row][col] |= 1 << facing; in otto()
272 if (been_there[row - 1][col] & NORTH) in ottolook()
274 for (r = row - 1; r >= 0; r--) in ottolook()
277 if (stop_look(itemp, ch, row - r, c - col)) in ottolook()
287 for (r = row - 1; r > row - itemp->distance; r--) in ottolook()
293 if (been_there[row + 1][col] & SOUTH) in ottolook()
295 for (r = row + 1; r < HEIGHT; r++) in ottolook()
298 if (stop_look(itemp, ch, r - row, col - c)) in ottolook()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/DebugInfo/GSYM/
H A DLineTable.cpp18 SetFile = 0x01, ///< Set LineTableRow.file_idx, don't push a row.
19 AdvancePC = 0x02, ///< Increment LineTableRow.address, and push a row.
20 AdvanceLine = 0x03, ///< Set LineTableRow.file_line, don't push a row.
21 FirstSpecial = 0x04, ///< All special opcodes push a row.
52 typedef std::function<bool(const LineEntry &Row)> LineEntryCallback;
70 LineEntry Row(BaseAddr, 1, FirstLine); in parse() local
86 Row.File = (uint32_t)Data.getULEB128(&Offset); in parse()
93 Row.Addr += Data.getULEB128(&Offset); in parse()
95 if (Callback(Row) == false) in parse()
103 Row.Line += Data.getSLEB128(&Offset); in parse()
[all …]
/openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/
H A DTileShapeInfo.h11 /// The 2D shape includes row and column. In AMX intrinsics interface the shape
14 /// tile config and register allocator. The row and column are machine operand
32 ShapeT(MachineOperand *Row, MachineOperand *Col,
34 : Row(Row), Col(Col) { in Row() function
39 : Row(nullptr), Col(nullptr), RowImm(InvalidImmShape), in ShapeT()
42 MachineOperand *R = Shape.Row;
46 if (!Row || !Col)
48 if (Row->getReg() == R->getReg() && Col->getReg() == C->getReg())
57 MachineOperand *getRow() const { return Row; } in getRow()
65 bool isValid() { return (Row != nullptr) && (Col != nullptr); } in isValid()
[all …]
/openbsd-src/sys/dev/rasops/
H A Drasops.c673 rasops_copycols(void *cookie, int row, int src, int dst, int num) in rasops_copycols() argument
686 if ((unsigned)row >= (unsigned)ri->ri_rows) in rasops_copycols()
710 row *= ri->ri_yscale; in rasops_copycols()
713 sp = ri->ri_bits + row + src * ri->ri_xscale; in rasops_copycols()
714 dp = ri->ri_bits + row + dst * ri->ri_xscale; in rasops_copycols()
740 rasops_cursor(void *cookie, int on, int row, int col) in rasops_cursor() argument
761 if (row < 0 || row >= ri->ri_rows) in rasops_cursor()
766 ri->ri_crow = row; in rasops_cursor()
885 rasops_eraserows(void *cookie, int row, int num, uint32_t attr) in rasops_eraserows() argument
894 if (row < 0) { in rasops_eraserows()
[all …]
H A Drasops_bitops.h40 NAME(erasecols)(void *cookie, int row, int col, int num, uint32_t attr) in NAME()
50 if ((unsigned)row >= (unsigned)ri->ri_rows) in NAME()
68 rp = (int32_t *)(ri->ri_bits + row*ri->ri_yscale + ((col >> 3) & ~3)); in NAME()
118 int lmask, rmask, height, row, col, num; in NAME() local
121 row = ri->ri_crow; in NAME()
125 rp = (int32_t *)(ri->ri_bits + row * ri->ri_yscale + ((col >> 3) & ~3)); in NAME()
158 NAME(copycols)(void *cookie, int row, int src, int dst, int num) in NAME()
171 if ((unsigned)row >= (unsigned)ri->ri_rows) in NAME()
198 row *= ri->ri_yscale; in NAME()
204 srp = (int32_t *)(ri->ri_bits + row + ((src >> 3) & ~3)); in NAME()
[all …]
/openbsd-src/usr.bin/column/
H A Dcolumn.c157 struct field **row; in c_columnate() local
162 for (col = 0, row = table;; ++row) { in c_columnate()
163 fputs((*row)->content, stdout); in c_columnate()
170 while (INCR_NEXTTAB((*row)->width) <= *maxwidths) in c_columnate()
180 int base, col, numcols, numrows, row; in r_columnate() local
189 for (base = row = 0; row < numrows; base = ++row) { in r_columnate()
204 int row; in print() local
206 for (row = 0; row < entries; row++) in print()
207 puts(table[row]->content); in print()
214 struct field **row; in maketbl() local
[all …]
/openbsd-src/gnu/gcc/gcc/
H A Dlambda-mat.c201 lambda_vector row; in lambda_matrix_row_exchange() local
203 row = mat[r1]; in lambda_matrix_row_exchange()
205 mat[r2] = row; in lambda_matrix_row_exchange()
208 /* Add a multiple of row R1 of matrix MAT with N columns to row R2:
223 /* Negate row R1 of matrix MAT which has N columns. */
231 /* Multiply row R1 of matrix MAT with N columns by CONST1. */
345 lambda_vector row; in lambda_matrix_inverse_hard() local
359 row = temp[j]; in lambda_matrix_inverse_hard()
361 /* Make every element in the current row positive. */ in lambda_matrix_inverse_hard()
363 if (row[i] < 0) in lambda_matrix_inverse_hard()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugFrame.cpp186 raw_ostream &llvm::dwarf::operator<<(raw_ostream &OS, const UnwindRow &Row) { in operator <<() argument
188 Row.dump(OS, DumpOpts, 0); in operator <<()
194 for (const UnwindRow &Row : Rows) in dump() local
195 Row.dump(OS, DumpOpts, IndentLevel); in dump()
216 UnwindRow Row; in create() local
217 Row.setAddress(Fde->getInitialLocation()); in create()
219 if (Error CieError = UT.parseRows(Cie->cfis(), Row, nullptr)) in create()
223 const RegisterLocations InitialLocs = Row.getRegisterLocations(); in create()
224 if (Error FdeError = UT.parseRows(Fde->cfis(), Row, &InitialLocs)) in create()
226 // May be all the CFI instructions were DW_CFA_nop amd Row becomes empty. in create()
[all …]
H A DDWARFDebugLine.cpp462 DWARFDebugLine::Row::Row(bool DefaultIsStmt) { reset(DefaultIsStmt); } in Row() function in DWARFDebugLine::Row
464 void DWARFDebugLine::Row::postAppend() { in postAppend()
471 void DWARFDebugLine::Row::reset(bool DefaultIsStmt) { in reset()
486 void DWARFDebugLine::Row::dumpTableHeader(raw_ostream &OS, unsigned Indent) { in dumpTableHeader()
494 void DWARFDebugLine::Row::dump(raw_ostream &OS) const { in dump()
522 Row::dumpTableHeader(OS, 0); in dump()
523 for (const Row &R : Rows) { in dump()
547 Row.reset(LineTable->Prologue.DefaultIsStmt); in resetRowAndSequence()
556 Sequence.LowPC = Row.Address.Address; in appendRowToMatrix()
559 LineTable->appendRow(Row); in appendRowToMatrix()
[all …]
/openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/GSYM/
H A DLineTable.h48 /// LineEntry Row(BaseAddr, 1, FirstLine);
52 /// form. Some opcodes cause "Row" to be modified and some opcodes may also
53 /// push "Row" onto the end of the "LineTable.Lines" vector. The end result
65 /// ULEB LTOC_SetFile 0x01 Row.File = ULEB
66 /// ULEB LTOC_AdvancePC 0x02 Row.Addr += ULEB, push "Row".
67 /// SLEB LTOC_AdvanceLine 0x03 Row.Line += SLEB
74 /// increment both the Row.Addr and Row.Line and push "Row" onto the
97 /// And use these to modify our "Row":
99 /// Row.Line += LineDelta;
100 /// Row.Addr += AddrDelta;
[all …]
/openbsd-src/lib/libmenu/
H A Dm_item_top.c47 | Function : int set_top_row(MENU *menu, int row)
49 | Description : Makes the specified row the top row in the menu
52 | E_BAD_ARGUMENT - not a menu pointer or invalid row
56 set_top_row(MENU *menu, int row) in MENU_EXPORT()
58 T((T_CALLED("set_top_row(%p,%d)"), (void *)menu, row)); in MENU_EXPORT()
67 if ((row < 0) || (row > (menu->rows - menu->arows))) in MENU_EXPORT()
73 if (row != menu->toprow) in MENU_EXPORT()
80 item = menu->items[(menu->opt & O_ROWMAJOR) ? (row * menu->cols) : row]; in MENU_EXPORT()
83 _nc_New_TopRow_and_CurrentItem(menu, row, item); in MENU_EXPORT()
93 | Description : Return the top row of the menu
[all …]
/openbsd-src/lib/libfido2/src/
H A Dlog.c72 char row[XXDROW], xxd[XXDLEN]; in fido_log_xxd() local
78 snprintf(row, sizeof(row), "buf=%p, len=%zu", buf, count); in fido_log_xxd()
80 do_log(row, fmt, args); in fido_log_xxd()
82 *row = '\0'; in fido_log_xxd()
90 strlcat(row, xxd, sizeof(row)); in fido_log_xxd()
92 fido_log_debug("%s", row); in fido_log_xxd()
93 *row = '\0'; in fido_log_xxd()
/openbsd-src/gnu/usr.bin/binutils/gdb/testsuite/gdb.mi/
H A Dmi-read-memory.exp57 …"2\\^done,addr=\"$hex\",nr-bytes=\"6\",total-bytes=\"6\",next-row=\"$hex\",prev-row=\"$hex\",next-…
62 …"9\\^done,addr=\"$hex\",nr-bytes=\"6\",total-bytes=\"6\",next-row=\"$hex\",prev-row=\"$hex\",next-…
67 …"3\\^done,addr=\"$hex\",nr-bytes=\"4\",total-bytes=\"4\",next-row=\"$hex\",prev-row=\"$hex\",next-…
72 …"4\\^done,addr=\"$hex\",nr-bytes=\"32\",total-bytes=\"32\",next-row=\"$hex\",prev-row=\"$hex\",nex…
77 …"5\\^done,addr=\"$hex\",nr-bytes=\"2\",total-bytes=\"2\",next-row=\"$hex\",prev-row=\"$hex\",next-…
81 …"6\\^done,addr=\"$hex\",nr-bytes=\"2\",total-bytes=\"2\",next-row=\"$hex\",prev-row=\"$hex\",next-…
H A Dmi2-read-memory.exp57 …"2\\^done,addr=\"$hex\",nr-bytes=\"6\",total-bytes=\"6\",next-row=\"$hex\",prev-row=\"$hex\",next-…
62 …"9\\^done,addr=\"$hex\",nr-bytes=\"6\",total-bytes=\"6\",next-row=\"$hex\",prev-row=\"$hex\",next-…
67 …"3\\^done,addr=\"$hex\",nr-bytes=\"4\",total-bytes=\"4\",next-row=\"$hex\",prev-row=\"$hex\",next-…
72 …"4\\^done,addr=\"$hex\",nr-bytes=\"32\",total-bytes=\"32\",next-row=\"$hex\",prev-row=\"$hex\",nex…
77 …"5\\^done,addr=\"$hex\",nr-bytes=\"2\",total-bytes=\"2\",next-row=\"$hex\",prev-row=\"$hex\",next-…
81 …"6\\^done,addr=\"$hex\",nr-bytes=\"2\",total-bytes=\"2\",next-row=\"$hex\",prev-row=\"$hex\",next-…
/openbsd-src/usr.bin/mg/
H A Dtty.c176 * Move the cursor to the specified origin 0 row and column position. Try to
181 ttmove(int row, int col) in ttmove() argument
183 if (ttrow != row || ttcol != col) { in ttmove()
184 putpad(tgoto(cursor_address, col, row), 1); in ttmove()
185 ttrow = row; in ttmove()
250 ttinsl(int row, int bot, int nchunk) in ttinsl() argument
255 if (row == bot) { in ttinsl()
256 ttmove(row, 0); in ttinsl()
262 nl = bot - row; in ttinsl()
263 ttwindow(row, bot); in ttinsl()
[all …]

12345678910>>...29