Searched refs:NumColumns (Results 1 - 11 of 11) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFUnitIndex.cpp108 NumColumns = IndexData.getU32(OffsetPtr);
141 (2 * Header.NumUnits + 1) * 4 * Header.NumColumns))
147 ColumnKinds = std::make_unique<DWARFSectionKind[]>(Header.NumColumns);
148 RawSectionIds = std::make_unique<uint32_t[]>(Header.NumColumns);
161 std::make_unique<Entry::SectionContribution[]>(Header.NumColumns);
166 for (unsigned i = 0; i != Header.NumColumns; ++i) {
182 for (unsigned i = 0; i != Header.NumColumns; ++i)
189 for (unsigned i = 0; i != Header.NumColumns; ++i)
220 for (unsigned i = 0; i != Header.NumColumns; ++i) {
229 for (unsigned i = 0; i != Header.NumColumns;
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFUnitIndex.h83 uint32_t NumColumns; member in struct:llvm::DWARFUnitIndex::Header
148 return makeArrayRef(ColumnKinds.get(), Header.NumColumns);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLowerMatrixIntrinsics.cpp223 MatrixTy(unsigned NumRows, unsigned NumColumns, Type *EltTy) argument
226 unsigned D = isColumnMajor() ? NumColumns : NumRows;
229 EltTy, isColumnMajor() ? NumRows : NumColumns)));
341 unsigned NumColumns; member in struct:__anon4683::LowerMatrixIntrinsics::ShapeInfo
345 ShapeInfo(unsigned NumRows = 0, unsigned NumColumns = 0)
346 : NumRows(NumRows), NumColumns(NumColumns),
349 ShapeInfo(Value *NumRows, Value *NumColumns) argument
351 cast<ConstantInt>(NumColumns)->getZExtValue()) {}
354 return NumRows == other.NumRows && NumColumns
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
H A DSourceMgr.cpp507 size_t NumColumns = LineContents.size(); local
510 std::string CaretLine(NumColumns + 1, ' ');
527 if (unsigned(ColumnNo) <= NumColumns)
530 CaretLine[NumColumns] = '^';
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/AST/
H A DType.h1686 unsigned NumColumns : 20;
3472 unsigned getNumColumns() const { return ConstantMatrixTypeBits.NumColumns; }
3476 return ConstantMatrixTypeBits.NumRows * ConstantMatrixTypeBits.NumColumns;
3496 unsigned NumRows, unsigned NumColumns,
3500 ID.AddInteger(NumColumns);
3495 Profile(llvm::FoldingSetNodeID &ID, QualType ElementType, unsigned NumRows, unsigned NumColumns, TypeClass TypeClass) argument
H A DASTContext.h1355 unsigned NumColumns) const;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/IR/
H A DVerifier.cpp5012 ConstantInt *NumColumns; local
5019 NumColumns = cast<ConstantInt>(Call.getArgOperand(4));
5028 NumColumns = cast<ConstantInt>(Call.getArgOperand(2));
5036 NumColumns = cast<ConstantInt>(Call.getArgOperand(4));
5044 NumColumns = cast<ConstantInt>(Call.getArgOperand(5));
5069 NumRows->getZExtValue() * NumColumns->getZExtValue(),
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp3921 unsigned NumColumns) const {
3923 ConstantMatrixType::Profile(ID, ElementTy, NumRows, NumColumns,
3929 ConstantMatrixType::isDimensionValid(NumColumns) &&
3938 getConstantMatrixType(getCanonicalType(ElementTy), NumRows, NumColumns);
3946 ConstantMatrixType(ElementTy, NumRows, NumColumns, Canonical);
H A DType.cpp313 ConstantMatrixTypeBits.NumColumns = nColumns;
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h899 unsigned NumColumns);
13984 QualType ElementType, unsigned NumRows, unsigned NumColumns) {
13986 NumColumns);
13983 RebuildConstantMatrixType( QualType ElementType, unsigned NumRows, unsigned NumColumns) argument
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h1678 QualType BuildMatrixType(QualType T, Expr *NumRows, Expr *NumColumns,

Completed in 410 milliseconds