Searched refs:dstRows (Results 1 – 11 of 11) sorted by relevance
/external/eigen/Eigen/src/Core/ |
D | Solve.h | 142 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);
|
D | AssignEvaluator.h | 717 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 …]
|
D | DiagonalMatrix.h | 323 Index dstRows = src.rows(); 325 if((dst.rows()!=dstRows) || (dst.cols()!=dstCols)) 326 dst.resize(dstRows, dstCols);
|
D | TriangularMatrix.h | 791 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);
|
D | ProductEvaluators.h | 143 Index dstRows = src.rows(); 145 if((dst.rows()!=dstRows) || (dst.cols()!=dstCols)) 146 dst.resize(dstRows, dstCols);
|
/external/eigen/Eigen/src/SparseCore/ |
D | SparseAssign.h | 164 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);
|
D | SparseProduct.h | 107 Index dstRows = src.rows(); 109 if((dst.rows()!=dstRows) || (dst.cols()!=dstCols)) 110 dst.resize(dstRows, dstCols);
|
/external/eigen/Eigen/src/IterativeLinearSolvers/ |
D | SolveWithGuess.h | 101 Index dstRows = src.rows(); 103 if((dst.rows()!=dstRows) || (dst.cols()!=dstCols)) 104 dst.resize(dstRows, dstCols);
|
/external/eigen/Eigen/src/Geometry/ |
D | Homogeneous.h | 356 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/ |
D | InverseImpl.h | 295 Index dstRows = src.rows(); 297 if((dst.rows()!=dstRows) || (dst.cols()!=dstCols)) 298 dst.resize(dstRows, dstCols);
|
/external/llvm-project/mlir/lib/Dialect/Vector/ |
D | VectorTransforms.cpp | 1884 unsigned dstRows = dstType.getShape()[0]; in matchAndRewrite() local 1890 for (unsigned r = 0; r < dstRows; ++r) { in matchAndRewrite()
|