Searched refs:Rows (Results 1 - 24 of 24) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/PBQP/
H A DMath.h127 Matrix(unsigned Rows, unsigned Cols) :
128 Rows(Rows), Cols(Cols), Data(std::make_unique<PBQPNum []>(Rows * Cols)) {
133 Matrix(unsigned Rows, unsigned Cols, PBQPNum InitVal)
134 : Rows(Rows), Cols(Cols),
135 Data(std::make_unique<PBQPNum []>(Rows * Cols)) {
136 std::fill(Data.get(), Data.get() + (Rows * Cols), InitVal);
141 : Rows(
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFUnitIndex.cpp125 Rows.reset();
144 Rows = std::make_unique<Entry[]>(Header.NumBuckets);
152 Rows[i].Signature = IndexData.getU64(&Offset);
159 Rows[i].Index = this;
160 Rows[i].Contributions =
162 Contribs[Index - 1] = Rows[i].Contributions.get();
233 auto &Row = Rows[i];
264 if (Rows[i].Contributions)
265 OffsetLookup.push_back(&Rows[i]);
291 while (Rows[
[all...]
H A DDWARFDebugLine.cpp508 if (!Rows.empty()) {
511 for (const Row &R : Rows) {
523 Rows.clear();
540 unsigned RowNumber = LineTable->Rows.size();
782 size_t RowCount = Rows.size();
1157 if (Verbose && Rows.size() == RowCount)
1213 RowIter FirstRow = Rows.begin() + Seq.FirstRowIndex;
1214 RowIter LastRow = Rows.begin() + Seq.LastRowIndex;
1221 return RowPos - Rows.begin();
1394 const auto &Row = Rows[RowInde
[all...]
H A DDWARFVerifier.cpp766 for (const auto &Row : LineTable->Rows) {
778 LineTable->Rows[RowIndex - 1].dump(OS);
H A DDWARFContext.cpp1274 const DWARFDebugLine::Row &Row = LineTable->Rows[RowIndex];
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFUnitIndex.h126 std::unique_ptr<Entry[]> Rows; member in class:llvm::DWARFUnitIndex
152 return makeArrayRef(Rows.get(), Header.NumBuckets);
H A DDWARFDebugLine.h237 void appendRow(const DWARFDebugLine::Row &R) { Rows.push_back(R); }
287 RowVector Rows; member in struct:llvm::DWARFDebugLine::LineTable
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DMatrixBuilder.h57 /// \p Rows - Number of rows in matrix (must be a constant)
61 Value *Stride, bool IsVolatile, unsigned Rows,
68 auto *RetType = FixedVectorType::get(EltTy, Rows * Columns);
70 Value *Ops[] = {DataPtr, Stride, B.getInt1(IsVolatile), B.getInt32(Rows),
90 unsigned Rows, unsigned Columns,
94 B.getInt32(Rows), B.getInt32(Columns)};
107 /// Create a llvm.matrix.transpose call, transposing \p Matrix with \p Rows
109 CallInst *CreateMatrixTranspose(Value *Matrix, unsigned Rows, argument
113 FixedVectorType::get(OpType->getElementType(), Rows * Columns);
116 Value *Ops[] = {Matrix, B.getInt32(Rows),
60 CreateColumnMajorLoad(Value *DataPtr, Align Alignment, Value *Stride, bool IsVolatile, unsigned Rows, unsigned Columns, const Twine &Name = �) argument
88 CreateColumnMajorStore(Value *Matrix, Value *Ptr, Align Alignment, Value *Stride, bool IsVolatile, unsigned Rows, unsigned Columns, const Twine &Name = �) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DRegisterInfoEmitter.cpp722 SmallVector<SmallVector<CodeGenSubRegIndex*, 4>, 4> Rows; local
728 for (unsigned r = 0, re = Rows.size(); r != re; ++r) {
729 if (combine(&Idx, Rows[r])) {
735 Found = Rows.size();
736 Rows.resize(Found + 1);
737 Rows.back().resize(SubRegIndicesSize);
738 combine(&Idx, Rows.back());
744 if (Rows.size() > 1) {
745 OS << " static const " << getMinimalTypeForRange(Rows.size(), 32)
754 << " Rows[" << Row
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DWARFLinker/
H A DDWARFStreamer.h111 /// Emit the line table described in \p Rows into the debug_line section.
114 std::vector<DWARFDebugLine::Row> &Rows,
H A DDWARFLinker.h150 /// Emit the line table described in \p Rows into the debug_line section.
154 std::vector<DWARFDebugLine::Row> &Rows,
/freebsd-13-stable/sys/contrib/edk2/Include/Protocol/
H A DSimpleTextOut.h226 @param Rows Returns the geometry of the text output device for the
240 OUT UINTN *Rows
/freebsd-13-stable/stand/i386/btx/btxldr/
H A Dbtxldr.S53 .set SCR_ROW,0x19 # Rows per screen
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DWARFLinker/
H A DDWARFLinker.cpp1547 /// set of already linked line info \p Rows.
1549 std::vector<DWARFDebugLine::Row> &Rows) {
1553 if (!Rows.empty() && Rows.back().Address < Seq.front().Address) {
1554 Rows.insert(Rows.end(), Seq.begin(), Seq.end());
1561 Rows, [=](const DWARFDebugLine::Row &O) { return O.Address < Front; });
1567 if (InsertPoint != Rows.end() && InsertPoint->Address == Front &&
1570 Rows.insert(InsertPoint + 1, Seq.begin() + 1, Seq.end());
1572 Rows
1548 insertLineSequence(std::vector<DWARFDebugLine::Row> &Seq, std::vector<DWARFDebugLine::Row> &Rows) argument
[all...]
H A DDWARFStreamer.cpp469 std::vector<DWARFDebugLine::Row> &Rows,
487 if (Rows.empty()) {
508 for (unsigned Idx = 0; Idx < Rows.size(); ++Idx) {
509 auto &Row = Rows[Idx];
466 emitLineTableForUnit(MCDwarfLineTableParams Params, StringRef PrologueBytes, unsigned MinInstLength, std::vector<DWARFDebugLine::Row> &Rows, unsigned PointerSize) argument
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/
H A DDwarfTransformer.cpp282 const DWARFDebugLine::Row &Row = CUI.LineTable->Rows[RowIndex];
320 CUI.LineTable->Rows[RowIndex2].dump(Log);
/freebsd-13-stable/stand/efi/include/
H A Deficon.h66 OUT UINTN *Rows
/freebsd-13-stable/contrib/kyua/store/
H A Dschema_v3.sql48 -- Rows in this table are immutable: modifying the metadata implies writing
H A Dschema_v1.sql48 -- Rows in this table are immutable: modifying the metadata implies writing
H A Dschema_v2.sql48 -- Rows in this table are immutable: modifying the metadata implies writing
/freebsd-13-stable/stand/i386/btx/btx/
H A Dbtx.S96 .set SCR_ROW,0x19 # Rows per screen
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DItaniumMangle.cpp3368 // U<Len>matrix_type<Rows><Columns><element type>
3373 llvm::APSInt Rows(BitWidth);
3374 Rows = T->getNumRows();
3375 mangleIntegerLiteral(ASTCtx.getSizeType(), Rows);
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaType.cpp7846 ExprResult Rows = S.ActOnIdExpression(S.getCurScope(), SS, local
7849 if (Rows.isInvalid())
7852 RowsExpr = Rows.get();
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARF.cpp1041 // the Rows directly.
1046 const llvm::DWARFDebugLine::Row &row = line_table->Rows[idx];

Completed in 254 milliseconds