HomeSort by: relevance | last modified time | path
    Searched defs:NumRows (Results 1 - 6 of 6) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Utils/
MatrixUtils.h 29 /// for CurrentRow = 0..NumRows
33 unsigned NumRows;
57 /// Header of the second loop iterating from 0..NumRows.
59 /// Latch of the second loop iterating from 0..NumRows.
66 TileInfo(unsigned NumRows, unsigned NumColumns, unsigned NumInner,
68 : NumRows(NumRows), NumColumns(NumColumns), NumInner(NumInner),
76 /// for CurrentRow = 0..NumRows
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
LoopInterchange.cpp 260 unsigned NumRows = DepMatrix.size();
262 for (unsigned Row = 0; Row < NumRows; ++Row) {
LowerMatrixIntrinsics.cpp 223 MatrixTy(unsigned NumRows, unsigned NumColumns, Type *EltTy)
226 unsigned D = isColumnMajor() ? NumColumns : NumRows;
229 EltTy, isColumnMajor() ? NumRows : NumColumns)));
339 unsigned NumRows;
344 ShapeInfo(unsigned NumRows = 0, unsigned NumColumns = 0)
345 : NumRows(NumRows), NumColumns(NumColumns),
348 ShapeInfo(Value *NumRows, Value *NumColumns)
349 : ShapeInfo(cast<ConstantInt>(NumRows)->getZExtValue(),
353 return NumRows == other.NumRows && NumColumns == other.NumColumns
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Type.h 3458 unsigned NumRows;
3471 unsigned getNumRows() const { return NumRows; }
3497 unsigned NumRows, unsigned NumColumns,
3500 ID.AddInteger(NumRows);
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGExpr.cpp 3873 llvm::Value *NumRows = Builder.getIntN(
3877 Builder.CreateAdd(Builder.CreateMul(ColIdx, NumRows), RowIdx);
  /src/external/apache2/llvm/dist/llvm/lib/IR/
Verifier.cpp 5195 ConstantInt *NumRows;
5202 NumRows = cast<ConstantInt>(Call.getArgOperand(2));
5211 NumRows = cast<ConstantInt>(Call.getArgOperand(1));
5219 NumRows = cast<ConstantInt>(Call.getArgOperand(3));
5227 NumRows = cast<ConstantInt>(Call.getArgOperand(4));
5253 NumRows->getZExtValue() * NumColumns->getZExtValue(),
5257 Assert(Stride->getZExtValue() >= NumRows->getZExtValue(),

Completed in 69 milliseconds