| /freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/PBQP/ |
| H A D | Math.h | 116 Matrix(unsigned Rows, unsigned Cols) : in Matrix() argument 117 Rows(Rows), Cols(Cols), Data(std::make_unique<PBQPNum []>(Rows * Cols)) { in Matrix() 122 Matrix(unsigned Rows, unsigned Cols, PBQPNum InitVal) in Matrix() argument 123 : Rows(Rows), Cols(Cols), in Matrix() 124 Data(std::make_unique<PBQPNum []>(Rows * Cols)) { in Matrix() 125 std::fill(Data.get(), Data.get() + (Rows * Cols), InitVal); in Matrix() 130 : Rows(M.Rows), Cols(M.Cols), in Matrix() 131 Data(std::make_unique<PBQPNum []>(Rows * Cols)) { in Matrix() 132 std::copy(M.Data.get(), M.Data.get() + (Rows * Cols), Data.get()); in Matrix() 137 : Rows(M.Rows), Cols(M.Cols), Data(std::move(M.Data)) { in Matrix() [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/LowLevel/ |
| H A D | DWARFUnwindTable.h | 280 UnwindTable(RowContainer &&Rows) : Rows(std::move(Rows)) {} in UnwindTable() argument 282 size_t size() const { return Rows.size(); } in size() 283 iterator begin() { return Rows.begin(); } in begin() 284 const_iterator begin() const { return Rows.begin(); } in begin() 285 iterator end() { return Rows.end(); } in end() 286 const_iterator end() const { return Rows.end(); } in end() 289 return Rows[Index]; 293 RowContainer Rows;
|
| /freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/ |
| H A D | DWARFUnitIndex.cpp | 126 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 …]
|
| H A D | DWARFUnwindTablePrinter.cpp | 175 void llvm::dwarf::printUnwindTable(const UnwindTable &Rows, raw_ostream &OS, in printUnwindTable() argument 178 for (const UnwindRow &Row : Rows) in printUnwindTable() 182 raw_ostream &llvm::dwarf::operator<<(raw_ostream &OS, const UnwindTable &Rows) { in operator <<() argument 184 printUnwindTable(Rows, OS, DumpOpts, 0); in operator <<()
|
| H A D | DWARFDebugFrame.cpp | 77 UnwindTable::RowContainer Rows; in createUnwindTable() local 79 if (Error CieError = parseRows(Cie->cfis(), Row, nullptr).moveInto(Rows)) in createUnwindTable() 85 Rows.push_back(Row); in createUnwindTable() 86 return UnwindTable(std::move(Rows)); in createUnwindTable()
|
| H A D | DWARFDebugLine.cpp | 543 if (!Rows.empty()) { in dump() 546 for (const Row &R : Rows) { in dump() 558 Rows.clear(); in clear() 574 unsigned RowNumber = LineTable->Rows.size(); in appendRowToMatrix() 875 size_t RowCount = Rows.size(); in parse() 1251 if (Verbose && Rows.size() == RowCount) in parse() 1311 RowIter FirstRow = Rows.begin() + Seq.FirstRowIndex; in findRowInSeq() 1312 RowIter LastRow = Rows.begin() + Seq.LastRowIndex; in findRowInSeq() 1319 return RowPos - Rows.begin(); in findRowInSeq() 1361 if (Rows[ApproxRowIndex].Line) in lookupAddressImpl() [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | MatrixBuilder.h | 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)}; 110 CallInst *CreateMatrixTranspose(Value *Matrix, unsigned Rows, 114 FixedVectorType::get(OpType->getElementType(), Rows * Columns); 117 Value *Ops[] = {Matrix, B.getInt32(Rows), B.getInt32(Columns)};
|
| /freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
| H A D | EntryPointStats.cpp | 188 std::vector<std::string> Rows; in dumpStatsAsCSV() local 189 Rows.reserve(StatsRegistry->Snapshots.size()); in dumpStatsAsCSV() 195 Rows.push_back(RowOs.str()); in dumpStatsAsCSV() 197 llvm::sort(Rows); in dumpStatsAsCSV() 198 for (const auto &Row : Rows) { in dumpStatsAsCSV()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/ |
| H A D | DWARFUnwindTablePrinter.h | 43 LLVM_ABI void printUnwindTable(const UnwindTable &Rows, raw_ostream &OS, 46 LLVM_ABI raw_ostream &operator<<(raw_ostream &OS, const UnwindTable &Rows);
|
| H A D | DWARFUnitIndex.h | 164 std::unique_ptr<Entry[]> Rows; variable 190 return ArrayRef(Rows.get(), Header.NumBuckets); in getRows() 194 return MutableArrayRef(Rows.get(), Header.NumBuckets); in getMutableRows()
|
| H A D | DWARFDebugLine.h | 239 void appendRow(const DWARFDebugLine::Row &R) { Rows.push_back(R); } in appendRow() 310 RowVector Rows; member
|
| /freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/Parallel/ |
| H A D | DWARFLinkerCompileUnit.cpp | 1530 OutLineTable.Rows = InputLineTable->Rows; in cloneAndEmitLineTable() 1533 if (OutLineTable.Rows.size() == 1 && OutLineTable.Rows[0].EndSequence) in cloneAndEmitLineTable() 1534 OutLineTable.Rows.clear(); in cloneAndEmitLineTable() 1540 NewRows.reserve(InputLineTable->Rows.size()); in cloneAndEmitLineTable() 1560 for (DWARFDebugLine::Row Row : InputLineTable->Rows) { in cloneAndEmitLineTable() 1601 OutLineTable.Rows = std::move(NewRows); in cloneAndEmitLineTable() 1608 std::vector<DWARFDebugLine::Row> &Rows) { in insertLineSequence() argument 1612 if (!Rows.empty() && Rows.back().Address < Seq.front().Address) { in insertLineSequence() 1613 llvm::append_range(Rows, Seq); in insertLineSequence() 1620 Rows, [=](const DWARFDebugLine::Row &O) { return O.Address < Front; }); in insertLineSequence() [all …]
|
| H A D | DebugLineSectionEmitter.h | 305 if (LineTable.Rows.empty()) { in emitLineTableRows() 325 for (const DWARFDebugLine::Row &Row : LineTable.Rows) { in emitLineTableRows()
|
| /freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/LowLevel/ |
| H A D | DWARFUnwindTable.cpp | 84 UnwindTable::RowContainer Rows; in parseRows() local 108 Rows.push_back(Row); in parseRows() 123 Rows.push_back(Row); in parseRows() 387 return Rows; in parseRows()
|
| /freebsd/contrib/llvm-project/llvm/utils/TableGen/ |
| H A D | RegisterInfoEmitter.cpp | 693 SmallVector<SmallVector<const CodeGenSubRegIndex *, 4>, 4> Rows; in emitComposeSubRegIndices() local 699 for (unsigned r = 0, re = Rows.size(); r != re; ++r) { in emitComposeSubRegIndices() 700 if (combine(&Idx, Rows[r])) { in emitComposeSubRegIndices() 706 Found = Rows.size(); in emitComposeSubRegIndices() 707 Rows.resize(Found + 1); in emitComposeSubRegIndices() 708 Rows.back().resize(SubRegIndicesSize); in emitComposeSubRegIndices() 709 combine(&Idx, Rows.back()); in emitComposeSubRegIndices() 718 if (Rows.size() > 1) { in emitComposeSubRegIndices() 719 OS << " static const " << getMinimalTypeForRange(Rows.size(), 32) in emitComposeSubRegIndices() 728 << " Rows[" << Rows.size() << "][" << SubRegIndicesSize << "] = {\n"; in emitComposeSubRegIndices() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/Classic/ |
| H A D | DWARFLinker.cpp | 2109 std::vector<TrackedRow> &Rows) { in insertLineSequence() argument 2117 if (!Rows.empty() && Rows.back().Row.Address < Seq.front().Row.Address) { in insertLineSequence() 2118 llvm::append_range(Rows, Seq); in insertLineSequence() 2125 Rows, [=](const TrackedRow &O) { return O.Row.Address < Front; }); in insertLineSequence() 2131 if (InsertPoint != Rows.end() && InsertPoint->Row.Address == Front && in insertLineSequence() 2134 Rows.insert(InsertPoint + 1, Seq.begin() + 1, Seq.end()); in insertLineSequence() 2136 Rows.insert(InsertPoint, Seq.begin(), Seq.end()); in insertLineSequence() 2193 LineTable.Rows = LT->Rows; in generateLineTableForUnit() 2196 if (LineTable.Rows.size() == 1 && LineTable.Rows[0].EndSequence) in generateLineTableForUnit() 2197 LineTable.Rows.clear(); in generateLineTableForUnit() [all …]
|
| /freebsd/contrib/llvm-project/libc/include/llvm-libc-types/ |
| H A D | EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL.h | 29 size_t *Columns, size_t *Rows);
|
| /freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/ |
| H A D | DWARFLinker.cpp | |
| /freebsd/sys/contrib/edk2/Include/Protocol/ |
| H A D | SimpleTextOut.h | 240 OUT UINTN *Rows
|
| /freebsd/stand/i386/btx/btxldr/ |
| H A D | btxldr.S | 51 .set SCR_ROW,0x19 # Rows per screen
|
| /freebsd/contrib/llvm-project/llvm/lib/Support/ |
| H A D | UnicodeNameToCodepoint.cpp | 479 LLVM_ATTRIBUTE_UNUSED static std::size_t Rows = in nearestMatchesForCodepointName() 487 assert(Row < Rows); in nearestMatchesForCodepointName() 482 LLVM_ATTRIBUTE_UNUSED static std::size_t Rows = nearestMatchesForCodepointName() local
|
| /freebsd/contrib/llvm-project/llvm/lib/DWARFLinkerParallel/ |
| H A D | DWARFEmitterImpl.h | |
| /freebsd/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/ |
| H A D | DwarfTransformer.cpp | 365 const DWARFDebugLine::Row &Row = CUI.LineTable->Rows[RowIndex]; in convertFunctionLineTable() 426 CUI.LineTable->Rows[RowIndex2].dump(OS); in convertFunctionLineTable()
|
| /freebsd/contrib/llvm-project/llvm/lib/MC/ |
| H A D | DXContainerPSVInfo.cpp | 47 FinalElement.Rows = static_cast<uint8_t>(El.Indices.size()); in ProcessElementList()
|
| /freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/ |
| H A D | LVDWARFReader.cpp | 542 if (options().getPrintLines() && Lines->Rows.size()) in createLineAndFileRecords() 543 for (const DWARFDebugLine::Row &Row : Lines->Rows) { in createLineAndFileRecords()
|