Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/DebugInfo/DWARF/
H A DDWARFUnitIndex.cpp109 NumColumns = IndexData.getU32(OffsetPtr); in parse()
142 (2 * Header.NumUnits + 1) * 4 * Header.NumColumns)) in parseImpl()
148 ColumnKinds = std::make_unique<DWARFSectionKind[]>(Header.NumColumns); in parseImpl()
149 RawSectionIds = std::make_unique<uint32_t[]>(Header.NumColumns); in parseImpl()
162 std::make_unique<Entry::SectionContribution[]>(Header.NumColumns); in parseImpl()
167 for (unsigned i = 0; i != Header.NumColumns; ++i) { in parseImpl()
183 for (unsigned i = 0; i != Header.NumColumns; ++i) in parseImpl()
190 for (unsigned i = 0; i != Header.NumColumns; ++i) in parseImpl()
221 for (unsigned i = 0; i != Header.NumColumns; ++i) { in dump()
232 for (unsigned i = 0; i != Header.NumColumns; ++i) { in dump()
[all …]
/openbsd-src/gnu/llvm/llvm/include/llvm/Transforms/Utils/
H A DMatrixUtils.h36 unsigned NumColumns; member
61 TileInfo(unsigned NumRows, unsigned NumColumns, unsigned NumInner, in TileInfo()
63 : NumRows(NumRows), NumColumns(NumColumns), NumInner(NumInner), in TileInfo()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Scalar/
H A DLowerMatrixIntrinsics.cpp265 MatrixTy(unsigned NumRows, unsigned NumColumns, Type *EltTy) in MatrixTy() argument
268 unsigned D = isColumnMajor() ? NumColumns : NumRows; in MatrixTy()
271 EltTy, isColumnMajor() ? NumRows : NumColumns))); in MatrixTy()
390 unsigned NumColumns; member
394 ShapeInfo(unsigned NumRows = 0, unsigned NumColumns = 0) in ShapeInfo()
395 : NumRows(NumRows), NumColumns(NumColumns), in ShapeInfo()
398 ShapeInfo(Value *NumRows, Value *NumColumns) in ShapeInfo()
400 cast<ConstantInt>(NumColumns)->getZExtValue()) {} in ShapeInfo()
403 return NumRows == other.NumRows && NumColumns == other.NumColumns; in operator ==()
410 assert(NumRows == 0 || NumColumns != 0); in operator bool()
[all …]
/openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFUnitIndex.h102 uint32_t NumColumns; member
182 return ArrayRef(ColumnKinds.get(), Header.NumColumns); in getColumnKinds()
/openbsd-src/gnu/llvm/llvm/lib/Support/
H A DSourceMgr.cpp540 size_t NumColumns = LineContents.size(); in print() local
543 std::string CaretLine(NumColumns + 1, ' '); in print()
557 if (unsigned(ColumnNo) <= NumColumns) in print()
560 CaretLine[NumColumns] = '^'; in print()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Utils/
H A DMatrixUtils.cpp84 CreateLoop(Start, End, B.getInt64(NumColumns), B.getInt64(TileSize), in CreateTiledLoops()
/openbsd-src/gnu/llvm/llvm/lib/IR/
H A DVerifier.cpp5592 ConstantInt *NumColumns; in visitIntrinsicCall() local
5599 NumColumns = cast<ConstantInt>(Call.getArgOperand(4)); in visitIntrinsicCall()
5608 NumColumns = cast<ConstantInt>(Call.getArgOperand(2)); in visitIntrinsicCall()
5616 NumColumns = cast<ConstantInt>(Call.getArgOperand(4)); in visitIntrinsicCall()
5628 NumColumns = cast<ConstantInt>(Call.getArgOperand(5)); in visitIntrinsicCall()
5660 NumRows->getZExtValue() * NumColumns->getZExtValue(), in visitIntrinsicCall()
/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DType.h3595 unsigned NumColumns;
3610 unsigned getNumColumns() const { return NumColumns; }
3633 unsigned NumRows, unsigned NumColumns,
3637 ID.AddInteger(NumColumns);
H A DASTContext.h1510 unsigned NumColumns) const;
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DASTContext.cpp4190 unsigned NumColumns) const { in getConstantMatrixType()
4192 ConstantMatrixType::Profile(ID, ElementTy, NumRows, NumColumns, in getConstantMatrixType()
4198 ConstantMatrixType::isDimensionValid(NumColumns) && in getConstantMatrixType()
4207 getConstantMatrixType(getCanonicalType(ElementTy), NumRows, NumColumns); in getConstantMatrixType()
4215 ConstantMatrixType(ElementTy, NumRows, NumColumns, Canonical); in getConstantMatrixType()
H A DType.cpp312 NumColumns(nColumns) {} in ConstantMatrixType()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DTreeTransform.h945 unsigned NumColumns);
14837 QualType ElementType, unsigned NumRows, unsigned NumColumns) { in RebuildConstantMatrixType() argument
14839 NumColumns); in RebuildConstantMatrixType()
/openbsd-src/gnu/llvm/clang/include/clang/Basic/
H A DAttr.td2937 let Args = [ExprArgument<"NumRows">, ExprArgument<"NumColumns">];
/openbsd-src/gnu/llvm/clang/include/clang/Sema/
H A DSema.h2057 QualType BuildMatrixType(QualType T, Expr *NumRows, Expr *NumColumns,