HomeSort by: relevance | last modified time | path
    Searched refs:NumColumns (Results 1 - 13 of 13) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Utils/
MatrixUtils.h 28 /// for CurrentColumn = 0..NumColumns
36 unsigned NumColumns;
54 /// Header of the outermost loop iterating from 0..NumColumns.
66 TileInfo(unsigned NumRows, unsigned NumColumns, unsigned NumInner,
68 : NumRows(NumRows), NumColumns(NumColumns), NumInner(NumInner),
75 /// for CurrentColumn = 0..NumColumns
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
DWARFUnitIndex.cpp 108 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; ++i
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/DWARF/
DWARFUnitIndex.h 83 uint32_t NumColumns;
148 return makeArrayRef(ColumnKinds.get(), Header.NumColumns);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
LowerMatrixIntrinsics.cpp 223 MatrixTy(unsigned NumRows, unsigned NumColumns, Type *EltTy)
226 unsigned D = isColumnMajor() ? NumColumns : NumRows;
229 EltTy, isColumnMajor() ? NumRows : NumColumns)));
340 unsigned NumColumns;
344 ShapeInfo(unsigned NumRows = 0, unsigned NumColumns = 0)
345 : NumRows(NumRows), NumColumns(NumColumns),
348 ShapeInfo(Value *NumRows, Value *NumColumns)
350 cast<ConstantInt>(NumColumns)->getZExtValue()) {}
353 return NumRows == other.NumRows && NumColumns == other.NumColumns
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Support/
SourceMgr.cpp 529 size_t NumColumns = LineContents.size();
532 std::string CaretLine(NumColumns + 1, ' ');
547 if (unsigned(ColumnNo) <= NumColumns)
550 CaretLine[NumColumns] = '^';
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
MatrixUtils.cpp 67 // for C = 0; C < NumColumns; C += TileSize
84 CreateLoop(Start, End, B.getInt64(NumColumns), B.getInt64(TileSize),
  /src/external/apache2/llvm/dist/llvm/lib/IR/
Verifier.cpp 5196 ConstantInt *NumColumns;
5203 NumColumns = cast<ConstantInt>(Call.getArgOperand(4));
5212 NumColumns = cast<ConstantInt>(Call.getArgOperand(2));
5220 NumColumns = cast<ConstantInt>(Call.getArgOperand(4));
5228 NumColumns = cast<ConstantInt>(Call.getArgOperand(5));
5253 NumRows->getZExtValue() * NumColumns->getZExtValue(),
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Type.h 3459 unsigned NumColumns;
3474 unsigned getNumColumns() const { return NumColumns; }
3497 unsigned NumRows, unsigned NumColumns,
3501 ID.AddInteger(NumColumns);
ASTContext.h 1422 unsigned NumColumns) const;
  /src/external/apache2/llvm/dist/clang/lib/AST/
ASTContext.cpp 4051 unsigned NumColumns) const {
4053 ConstantMatrixType::Profile(ID, ElementTy, NumRows, NumColumns,
4059 ConstantMatrixType::isDimensionValid(NumColumns) &&
4068 getConstantMatrixType(getCanonicalType(ElementTy), NumRows, NumColumns);
4076 ConstantMatrixType(ElementTy, NumRows, NumColumns, Canonical);
Type.cpp 312 NumColumns(nColumns) {}
  /src/external/apache2/llvm/dist/clang/lib/Sema/
TreeTransform.h 901 unsigned NumColumns);
14290 QualType ElementType, unsigned NumRows, unsigned NumColumns) {
14292 NumColumns);
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
Sema.h 1917 QualType BuildMatrixType(QualType T, Expr *NumRows, Expr *NumColumns,

Completed in 74 milliseconds