Home
last modified time | relevance | path

Searched refs:NumCols (Results 1 – 2 of 2) sorted by relevance

/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
DREADME.md565 cout << "NumRows: " << a.dimension(0) << " NumCols: " << a.dimension(1) << endl;
566 => NumRows: 3 NumCols: 4
577 cout << "NumRows: " << a.dimension(0) << " NumCols: " << a.dimension(1) << endl;
578 => NumRows: 3 NumCols: 4
588 cout << "NumRows: " << a.dimension(0) << " NumCols: " << a.dimension(1) << endl;
589 => NumRows: 3 NumCols: 4
/external/llvm-project/clang/lib/Sema/
DSemaType.cpp2642 QualType Sema::BuildMatrixType(QualType ElementTy, Expr *NumRows, Expr *NumCols, in BuildMatrixType() argument
2654 if (NumRows->isTypeDependent() || NumCols->isTypeDependent() || in BuildMatrixType()
2655 NumRows->isValueDependent() || NumCols->isValueDependent()) in BuildMatrixType()
2656 return Context.getDependentSizedMatrixType(ElementTy, NumRows, NumCols, in BuildMatrixType()
2661 NumCols->getIntegerConstantExpr(Context); in BuildMatrixType()
2664 auto const ColRange = NumCols->getSourceRange(); in BuildMatrixType()