Home
last modified time | relevance | path

Searched refs:dstRows (Results 1 – 11 of 11) sorted by relevance

/external/eigen/Eigen/src/Core/
DSolve.h142 Index dstRows = src.rows();
144 if((dst.rows()!=dstRows) || (dst.cols()!=dstCols))
145 dst.resize(dstRows, dstCols);
158 Index dstRows = src.rows();
160 if((dst.rows()!=dstRows) || (dst.cols()!=dstCols))
161 dst.resize(dstRows, dstCols);
175 Index dstRows = src.rows();
177 if((dst.rows()!=dstRows) || (dst.cols()!=dstCols))
178 dst.resize(dstRows, dstCols);
DAssignEvaluator.h717 Index dstRows = src.rows();
719 if(((dst.rows()!=dstRows) || (dst.cols()!=dstCols)))
720 dst.resize(dstRows, dstCols);
721 eigen_assert(dst.rows() == dstRows && dst.cols() == dstCols);
893 Index dstRows = src.rows();
895 if((dst.rows()!=dstRows) || (dst.cols()!=dstCols))
896 dst.resize(dstRows, dstCols);
908 Index dstRows = src.rows();
910 if((dst.rows()!=dstRows) || (dst.cols()!=dstCols))
911 dst.resize(dstRows, dstCols);
[all …]
DDiagonalMatrix.h323 Index dstRows = src.rows();
325 if((dst.rows()!=dstRows) || (dst.cols()!=dstCols))
326 dst.resize(dstRows, dstCols);
DTriangularMatrix.h791 Index dstRows = src.rows();
793 if((dst.rows()!=dstRows) || (dst.cols()!=dstCols))
794 dst.resize(dstRows, dstCols);
948 Index dstRows = src.rows();
950 if((dst.rows()!=dstRows) || (dst.cols()!=dstCols))
951 dst.resize(dstRows, dstCols);
DProductEvaluators.h143 Index dstRows = src.rows();
145 if((dst.rows()!=dstRows) || (dst.cols()!=dstCols))
146 dst.resize(dstRows, dstCols);
/external/eigen/Eigen/src/SparseCore/
DSparseAssign.h164 Index dstRows = src.rows();
166 if((dst.rows()!=dstRows) || (dst.cols()!=dstCols))
167 dst.resize(dstRows, dstCols);
187 Index dstRows = src.rows();
189 if((dst.rows()!=dstRows) || (dst.cols()!=dstCols))
190 dst.resize(dstRows, dstCols);
DSparseProduct.h107 Index dstRows = src.rows();
109 if((dst.rows()!=dstRows) || (dst.cols()!=dstCols))
110 dst.resize(dstRows, dstCols);
/external/eigen/Eigen/src/IterativeLinearSolvers/
DSolveWithGuess.h101 Index dstRows = src.rows();
103 if((dst.rows()!=dstRows) || (dst.cols()!=dstCols))
104 dst.resize(dstRows, dstCols);
/external/eigen/Eigen/src/Geometry/
DHomogeneous.h356 Index dstRows = src.rows();
358 if((dst.rows()!=dstRows) || (dst.cols()!=dstCols))
359 dst.resize(dstRows, dstCols);
373 Index dstRows = src.rows();
375 if((dst.rows()!=dstRows) || (dst.cols()!=dstCols))
376 dst.resize(dstRows, dstCols);
/external/eigen/Eigen/src/LU/
DInverseImpl.h295 Index dstRows = src.rows();
297 if((dst.rows()!=dstRows) || (dst.cols()!=dstCols))
298 dst.resize(dstRows, dstCols);
/external/llvm-project/mlir/lib/Dialect/Vector/
DVectorTransforms.cpp1884 unsigned dstRows = dstType.getShape()[0]; in matchAndRewrite() local
1890 for (unsigned r = 0; r < dstRows; ++r) { in matchAndRewrite()