Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/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()
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()
236 for (unsigned i = 0; i != Header.NumColumns; ++i) { in dump()
[all …]
/freebsd-13.1/contrib/llvm-project/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()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLowerMatrixIntrinsics.cpp351 unsigned NumColumns; member
356 : NumRows(NumRows), NumColumns(NumColumns), in ShapeInfo()
364 return NumRows == other.NumRows && NumColumns == other.NumColumns; in operator ==()
378 return NumColumns; in getStride()
383 return NumColumns; in getNumVectors()
1370 const unsigned C = RShape.NumColumns; in isFusionProfitable()
1371 const unsigned M = LShape.NumColumns; in isFusionProfitable()
1410 TileInfo TI(LShape.NumRows, RShape.NumColumns, LShape.NumColumns, TileSize); in createTiledLoops()
1474 const unsigned C = RShape.NumColumns; in emitSIMDTiling()
1475 const unsigned M = LShape.NumColumns; in emitSIMDTiling()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFUnitIndex.h83 uint32_t NumColumns; member
148 return makeArrayRef(ColumnKinds.get(), Header.NumColumns); in getColumnKinds()
/freebsd-13.1/contrib/llvm-project/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()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DMatrixUtils.cpp84 CreateLoop(Start, End, B.getInt64(NumColumns), B.getInt64(TileSize), in CreateTiledLoops()
/freebsd-13.1/contrib/llvm-project/llvm/lib/IR/
H A DVerifier.cpp5157 ConstantInt *NumColumns; in visitIntrinsicCall() local
5164 NumColumns = cast<ConstantInt>(Call.getArgOperand(4)); in visitIntrinsicCall()
5173 NumColumns = cast<ConstantInt>(Call.getArgOperand(2)); in visitIntrinsicCall()
5181 NumColumns = cast<ConstantInt>(Call.getArgOperand(4)); in visitIntrinsicCall()
5189 NumColumns = cast<ConstantInt>(Call.getArgOperand(5)); in visitIntrinsicCall()
5214 NumRows->getZExtValue() * NumColumns->getZExtValue(), in visitIntrinsicCall()
/freebsd-13.1/contrib/llvm-project/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.h1467 unsigned NumColumns) const;
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp4066 unsigned NumColumns) const { in getConstantMatrixType()
4068 ConstantMatrixType::Profile(ID, ElementTy, NumRows, NumColumns, in getConstantMatrixType()
4074 ConstantMatrixType::isDimensionValid(NumColumns) && in getConstantMatrixType()
4083 getConstantMatrixType(getCanonicalType(ElementTy), NumRows, NumColumns); in getConstantMatrixType()
4091 ConstantMatrixType(ElementTy, NumRows, NumColumns, Canonical); in getConstantMatrixType()
H A DType.cpp312 NumColumns(nColumns) {} in ConstantMatrixType()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h901 unsigned NumColumns);
14355 QualType ElementType, unsigned NumRows, unsigned NumColumns) { in RebuildConstantMatrixType() argument
14357 NumColumns); in RebuildConstantMatrixType()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/
H A DAttr.td2791 let Args = [ExprArgument<"NumRows">, ExprArgument<"NumColumns">];
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h1953 QualType BuildMatrixType(QualType T, Expr *NumRows, Expr *NumColumns,