Home
last modified time | relevance | path

Searched refs:Rows (Results 1 – 25 of 28) sorted by relevance

12

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/PBQP/
H A DMath.h127 Matrix(unsigned Rows, unsigned Cols) : in Matrix() argument
128 Rows(Rows), Cols(Cols), Data(std::make_unique<PBQPNum []>(Rows * Cols)) { in Matrix()
133 Matrix(unsigned Rows, unsigned Cols, PBQPNum InitVal) in Matrix() argument
134 : Rows(Rows), Cols(Cols), in Matrix()
135 Data(std::make_unique<PBQPNum []>(Rows * Cols)) { in Matrix()
136 std::fill(Data.get(), Data.get() + (Rows * Cols), InitVal); in Matrix()
141 : Rows(M.Rows), Cols(M.Cols), in Matrix()
142 Data(std::make_unique<PBQPNum []>(Rows * Cols)) { in Matrix()
143 std::copy(M.Data.get(), M.Data.get() + (Rows * Cols), Data.get()); in Matrix()
148 : Rows(M.Rows), Cols(M.Cols), Data(std::move(M.Data)) { in Matrix()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
H A DDWARFUnitIndex.cpp125 Rows.reset(); in parse()
144 Rows = std::make_unique<Entry[]>(Header.NumBuckets); in parseImpl()
152 Rows[i].Signature = IndexData.getU64(&Offset); in parseImpl()
159 Rows[i].Index = this; in parseImpl()
160 Rows[i].Contributions = in parseImpl()
162 Contribs[Index - 1] = Rows[i].Contributions.get(); in parseImpl()
233 auto &Row = Rows[i]; in dump()
264 if (Rows[i].Contributions) in getFromOffset()
265 OffsetLookup.push_back(&Rows[i]); in getFromOffset()
291 while (Rows[H].getSignature() != S && Rows[H].Index != nullptr) in getFromHash()
[all …]
H A DDWARFDebugLine.cpp520 if (!Rows.empty()) { in dump()
523 for (const Row &R : Rows) { in dump()
535 Rows.clear(); in clear()
552 unsigned RowNumber = LineTable->Rows.size(); in appendRowToMatrix()
806 size_t RowCount = Rows.size(); in parse()
1170 if (Verbose && Rows.size() == RowCount) in parse()
1226 RowIter FirstRow = Rows.begin() + Seq.FirstRowIndex; in findRowInSeq()
1227 RowIter LastRow = Rows.begin() + Seq.LastRowIndex; in findRowInSeq()
1234 return RowPos - Rows.begin(); in findRowInSeq()
1407 const auto &Row = Rows[RowIndex]; in getFileLineInfoForAddress()
H A DDWARFDebugFrame.cpp189 for (const UnwindRow &Row : Rows) in dump()
193 raw_ostream &llvm::dwarf::operator<<(raw_ostream &OS, const UnwindTable &Rows) { in operator <<() argument
194 Rows.dump(OS, nullptr, false, 0); in operator <<()
224 UT.Rows.push_back(Row); in create()
241 UT.Rows.push_back(Row); in create()
519 Rows.push_back(Row); in parseRows()
534 Rows.push_back(Row); in parseRows()
H A DDWARFVerifier.cpp808 for (const auto &Row : LineTable->Rows) { in verifyDebugLineRows()
820 LineTable->Rows[RowIndex - 1].dump(OS); in verifyDebugLineRows()
H A DDWARFContext.cpp1286 const DWARFDebugLine::Row &Row = LineTable->Rows[RowIndex]; in getLineInfoForAddressRange()
/netbsd-src/games/tetris/
H A Dscreen.c185 Rows = 0, Cols = 0; in scr_set()
187 Rows = ws.ws_row; in scr_set()
190 if (Rows == 0) in scr_set()
191 Rows = lines; in scr_set()
194 if (Rows < MINROWS || Cols < MINCOLS) { in scr_set()
200 Offset = (Rows - D_LAST + D_FIRST - 2) / 2; in scr_set()
247 moveto(Rows - 1, 0); in scr_end()
422 moveto(Rows - 2, ((Cols - l) >> 1) - 1); in scr_msg()
429 moveto(Rows - 2, 0); in scr_msg()
H A Dtetris.h75 extern int Rows, Cols; /* current screen size */
H A Dtetris.c64 int Rows, Cols; /* current screen size */ variable
/netbsd-src/external/apache2/llvm/dist/clang/tools/scan-build-py/libscanbuild/resources/
H A Dselectable.js3 var Rows = document.getElementsByTagName("tr");
4 for ( var i = 0 ; i < Rows.length; ++i ) {
5 if (Rows[i].className == RowClass) {
6 Rows[i].style.display = DisplayVal;
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DMatrixBuilder.h66 Value *Stride, bool IsVolatile, unsigned Rows,
73 auto *RetType = FixedVectorType::get(EltTy, Rows * Columns);
75 Value *Ops[] = {DataPtr, Stride, B.getInt1(IsVolatile), B.getInt32(Rows),
95 unsigned Rows, unsigned Columns,
99 B.getInt32(Rows), B.getInt32(Columns)};
114 CallInst *CreateMatrixTranspose(Value *Matrix, unsigned Rows,
118 FixedVectorType::get(OpType->getElementType(), Rows * Columns);
121 Value *Ops[] = {Matrix, B.getInt32(Rows), B.getInt32(Columns)};
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDebugFrame.h309 size_t size() const { return Rows.size(); } in size()
310 iterator begin() { return Rows.begin(); } in begin()
311 const_iterator begin() const { return Rows.begin(); } in begin()
312 iterator end() { return Rows.end(); } in end()
313 const_iterator end() const { return Rows.end(); } in end()
316 return Rows[Index];
357 RowContainer Rows;
381 raw_ostream &operator<<(raw_ostream &OS, const UnwindTable &Rows);
H A DDWARFUnitIndex.h126 std::unique_ptr<Entry[]> Rows; variable
152 return makeArrayRef(Rows.get(), Header.NumBuckets); in getRows()
H A DDWARFDebugLine.h239 void appendRow(const DWARFDebugLine::Row &R) { Rows.push_back(R); } in appendRow()
293 RowVector Rows; member
/netbsd-src/external/apache2/llvm/dist/llvm/utils/TableGen/
H A DRegisterInfoEmitter.cpp712 SmallVector<SmallVector<CodeGenSubRegIndex*, 4>, 4> Rows; in emitComposeSubRegIndices() local
718 for (unsigned r = 0, re = Rows.size(); r != re; ++r) { in emitComposeSubRegIndices()
719 if (combine(&Idx, Rows[r])) { in emitComposeSubRegIndices()
725 Found = Rows.size(); in emitComposeSubRegIndices()
726 Rows.resize(Found + 1); in emitComposeSubRegIndices()
727 Rows.back().resize(SubRegIndicesSize); in emitComposeSubRegIndices()
728 combine(&Idx, Rows.back()); in emitComposeSubRegIndices()
734 if (Rows.size() > 1) { in emitComposeSubRegIndices()
735 OS << " static const " << getMinimalTypeForRange(Rows.size(), 32) in emitComposeSubRegIndices()
744 << " Rows[" << Rows.size() << "][" << SubRegIndicesSize << "] = {\n"; in emitComposeSubRegIndices()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DWARFLinker/
H A DDWARFStreamer.cpp495 std::vector<DWARFDebugLine::Row> &Rows, in emitLineTableForUnit() argument
513 if (Rows.empty()) { in emitLineTableForUnit()
534 for (unsigned Idx = 0; Idx < Rows.size(); ++Idx) { in emitLineTableForUnit()
535 auto &Row = Rows[Idx]; in emitLineTableForUnit()
H A DDWARFLinker.cpp1598 std::vector<DWARFDebugLine::Row> &Rows) { in insertLineSequence() argument
1602 if (!Rows.empty() && Rows.back().Address < Seq.front().Address) { in insertLineSequence()
1603 llvm::append_range(Rows, Seq); in insertLineSequence()
1610 Rows, [=](const DWARFDebugLine::Row &O) { return O.Address < Front; }); in insertLineSequence()
1616 if (InsertPoint != Rows.end() && InsertPoint->Address == Front && in insertLineSequence()
1619 Rows.insert(InsertPoint + 1, Seq.begin() + 1, Seq.end()); in insertLineSequence()
1621 Rows.insert(InsertPoint, Seq.begin(), Seq.end()); in insertLineSequence()
1671 NewRows.reserve(LineTable.Rows.size()); in patchLineTableForUnit()
1690 for (auto &Row : LineTable.Rows) { in patchLineTableForUnit()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DWARFLinker/
H A DDWARFStreamer.h114 std::vector<DWARFDebugLine::Row> &Rows,
H A DDWARFLinker.h162 std::vector<DWARFDebugLine::Row> &Rows,
/netbsd-src/sys/external/bsd/gnu-efi/dist/inc/
H A Deficon.h61 OUT UINTN *Rows
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/GSYM/
H A DDwarfTransformer.cpp282 const DWARFDebugLine::Row &Row = CUI.LineTable->Rows[RowIndex]; in convertFunctionLineTable()
320 CUI.LineTable->Rows[RowIndex2].dump(Log); in convertFunctionLineTable()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-cfi-verify/lib/
H A DFileAnalysis.cpp440 if (LineTable && !LineTable->Rows.empty()) { in parseCodeSections()
/netbsd-src/sys/external/bsd/acpica/dist/include/platform/
H A Dacefiex.h215 UINTN *Rows);
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DItaniumMangle.cpp3709 llvm::APSInt Rows(BitWidth); in mangleType() local
3710 Rows = T->getNumRows(); in mangleType()
3711 mangleIntegerLiteral(ASTCtx.getSizeType(), Rows); in mangleType()
/netbsd-src/external/apache2/llvm/dist/llvm/docs/
H A DLangRef.rst16986 declare vectorty @llvm.matrix.transpose.*(vectorty %In, i32 <Rows>, i32 <Cols>)
16991 The '``llvm.matrix.transpose.*``' intrinsics treat ``%In`` as a ``<Rows> x
16997 The first argument ``%In`` is a vector that corresponds to a ``<Rows> x
16998 <Cols>`` matrix. Thus, arguments ``<Rows>`` and ``<Cols>`` correspond to the
17000 integers. The returned vector must have ``<Rows> * <Cols>`` elements, and have
17043 ptrty %Ptr, i64 %Stride, i1 <IsVolatile>, i32 <Rows>, i32 <Cols>)
17048 The '``llvm.matrix.column.major.load.*``' intrinsics load a ``<Rows> x <Cols>``
17061 is a positive, constant integer with ``%Stride >= <Rows>``. ``%Stride`` is used
17065 ``<Rows>`` and ``<Cols>``, correspond to the number of rows and columns,
17067 have ``<Rows> * <Cols>`` elements.
[all …]

12