Home
last modified time | relevance | path

Searched refs:NumColumns (Results 1 – 14 of 14) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
H A DDWARFUnitIndex.cpp108 NumColumns = IndexData.getU32(OffsetPtr); in parse()
141 (2 * Header.NumUnits + 1) * 4 * Header.NumColumns)) in parseImpl()
147 ColumnKinds = std::make_unique<DWARFSectionKind[]>(Header.NumColumns); in parseImpl()
148 RawSectionIds = std::make_unique<uint32_t[]>(Header.NumColumns); in parseImpl()
161 std::make_unique<Entry::SectionContribution[]>(Header.NumColumns); in parseImpl()
166 for (unsigned i = 0; i != Header.NumColumns; ++i) { in parseImpl()
182 for (unsigned i = 0; i != Header.NumColumns; ++i) in parseImpl()
189 for (unsigned i = 0; i != Header.NumColumns; ++i) in parseImpl()
220 for (unsigned i = 0; i != Header.NumColumns; ++i) { in dump()
229 for (unsigned i = 0; i != Header.NumColumns; ++i) in dump()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Utils/
H A DMatrixUtils.h36 unsigned NumColumns; member
66 TileInfo(unsigned NumRows, unsigned NumColumns, unsigned NumInner, in TileInfo()
68 : NumRows(NumRows), NumColumns(NumColumns), NumInner(NumInner), in TileInfo()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DLowerMatrixIntrinsics.cpp223 MatrixTy(unsigned NumRows, unsigned NumColumns, Type *EltTy) in MatrixTy() argument
226 unsigned D = isColumnMajor() ? NumColumns : NumRows; in MatrixTy()
229 EltTy, isColumnMajor() ? NumRows : NumColumns))); in MatrixTy()
340 unsigned NumColumns; member
344 ShapeInfo(unsigned NumRows = 0, unsigned NumColumns = 0) in ShapeInfo()
345 : NumRows(NumRows), NumColumns(NumColumns), in ShapeInfo()
348 ShapeInfo(Value *NumRows, Value *NumColumns) in ShapeInfo()
350 cast<ConstantInt>(NumColumns)->getZExtValue()) {} in ShapeInfo()
353 return NumRows == other.NumRows && NumColumns == other.NumColumns; in operator ==()
360 assert(NumRows == 0 || NumColumns != 0); in operator bool()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFUnitIndex.h83 uint32_t NumColumns; member
148 return makeArrayRef(ColumnKinds.get(), Header.NumColumns); in getColumnKinds()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DSourceMgr.cpp529 size_t NumColumns = LineContents.size(); in print() local
532 std::string CaretLine(NumColumns + 1, ' '); in print()
547 if (unsigned(ColumnNo) <= NumColumns) in print()
550 CaretLine[NumColumns] = '^'; in print()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DMatrixUtils.cpp84 CreateLoop(Start, End, B.getInt64(NumColumns), B.getInt64(TileSize), in CreateTiledLoops()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DVerifier.cpp5196 ConstantInt *NumColumns; in visitIntrinsicCall() local
5203 NumColumns = cast<ConstantInt>(Call.getArgOperand(4)); in visitIntrinsicCall()
5212 NumColumns = cast<ConstantInt>(Call.getArgOperand(2)); in visitIntrinsicCall()
5220 NumColumns = cast<ConstantInt>(Call.getArgOperand(4)); in visitIntrinsicCall()
5228 NumColumns = cast<ConstantInt>(Call.getArgOperand(5)); in visitIntrinsicCall()
5253 NumRows->getZExtValue() * NumColumns->getZExtValue(), in visitIntrinsicCall()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DType.h3459 unsigned NumColumns;
3474 unsigned getNumColumns() const { return NumColumns; }
3497 unsigned NumRows, unsigned NumColumns,
3501 ID.AddInteger(NumColumns);
H A DASTContext.h1422 unsigned NumColumns) const;
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DASTContext.cpp4051 unsigned NumColumns) const { in getConstantMatrixType()
4053 ConstantMatrixType::Profile(ID, ElementTy, NumRows, NumColumns, in getConstantMatrixType()
4059 ConstantMatrixType::isDimensionValid(NumColumns) && in getConstantMatrixType()
4068 getConstantMatrixType(getCanonicalType(ElementTy), NumRows, NumColumns); in getConstantMatrixType()
4076 ConstantMatrixType(ElementTy, NumRows, NumColumns, Canonical); in getConstantMatrixType()
H A DType.cpp312 NumColumns(nColumns) {} in ConstantMatrixType()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DTreeTransform.h901 unsigned NumColumns);
14290 QualType ElementType, unsigned NumRows, unsigned NumColumns) { in RebuildConstantMatrixType() argument
14292 NumColumns); in RebuildConstantMatrixType()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DAttr.td2768 let Args = [ExprArgument<"NumRows">, ExprArgument<"NumColumns">];
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DSema.h1917 QualType BuildMatrixType(QualType T, Expr *NumRows, Expr *NumColumns,