HomeSort by relevance Sort by last modified time
    Searched refs:conservativeResize (Results 1 - 10 of 10) sorted by null

  /external/eigen/test/
conservative_resize.cpp 26 m.conservativeResize(1,50);
30 m.conservativeResize(50,1);
34 m.conservativeResize(50,50);
43 m.conservativeResize(rows,cols);
69 m.conservativeResize(1);
73 m.conservativeResize(50);
77 m.conservativeResize(m.rows(),1);
81 m.conservativeResize(m.rows(),50);
89 m.conservativeResize(size);
93 m.conservativeResize(m.rows(), size)
    [all...]
sizeoverflow.cpp 26 VERIFY_THROWS_BADALLOC( MatrixType m; m.conservativeResize(rows, cols) );
34 VERIFY_THROWS_BADALLOC( VectorType v; v.conservativeResize(size) );
sparse_vector.cpp 132 vec1.conservativeResize(rows+incRows);
133 refVec1.conservativeResize(rows+incRows);
svd_common.h 200 tmp.conservativeResize(cols);
sparse_basic.cpp 548 m1.conservativeResize(rows+incRows, cols+incCols);
549 refMat1.conservativeResize(rows+incRows, cols+incCols);
  /external/eigen/Eigen/src/Core/
DenseStorage.h 213 EIGEN_DEVICE_FUNC void conservativeResize(Index,Index,Index) {}
231 EIGEN_DEVICE_FUNC void conservativeResize(Index,Index,Index) {}
273 EIGEN_DEVICE_FUNC void conservativeResize(Index, Index rows, Index cols) { m_rows = rows; m_cols = cols; }
302 EIGEN_DEVICE_FUNC void conservativeResize(Index, Index rows, Index) { m_rows = rows; }
331 void conservativeResize(Index, Index, Index cols) { m_cols = cols; }
396 void conservativeResize(Index size, Index rows, Index cols)
472 EIGEN_DEVICE_FUNC void conservativeResize(Index size, Index, Index cols)
546 void conservativeResize(Index size, Index rows, Index)
PlainObjectBase.h 383 * of rows and/or of columns, you can use conservativeResize(NoChange_t, Index) or
384 * conservativeResize(Index, NoChange_t).
390 EIGEN_STRONG_INLINE void conservativeResize(Index rows, Index cols)
397 * As opposed to conservativeResize(Index rows, Index cols), this version leaves
403 EIGEN_STRONG_INLINE void conservativeResize(Index rows, NoChange_t)
405 // Note: see the comment in conservativeResize(Index,Index)
406 conservativeResize(rows, cols());
411 * As opposed to conservativeResize(Index rows, Index cols), this version leaves
417 EIGEN_STRONG_INLINE void conservativeResize(NoChange_t, Index cols)
419 // Note: see the comment in conservativeResize(Index,Index
    [all...]
  /external/eigen/Eigen/src/SparseCore/
SparseVector.h 232 * \sa conservativeResize(), setZero() */
246 void conservativeResize(Index newSize)
SparseMatrix.h 553 void conservativeResize(Index rows, Index cols)
    [all...]
  /external/eigen/Eigen/src/OrderingMethods/
Amd.h 438 perm.indices().conservativeResize(n);

Completed in 207 milliseconds