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

  /external/eigen/Eigen/src/Core/
DenseStorage.h 96 inline void conservativeResize(DenseIndex,DenseIndex,DenseIndex) {}
112 inline void conservativeResize(DenseIndex,DenseIndex,DenseIndex) {}
143 inline void conservativeResize(DenseIndex, DenseIndex rows, DenseIndex cols) { m_rows = rows; m_cols = cols; }
162 inline void conservativeResize(DenseIndex, DenseIndex rows, DenseIndex) { m_rows = rows; }
181 inline void conservativeResize(DenseIndex, DenseIndex, DenseIndex cols) { m_cols = cols; }
205 inline void conservativeResize(DenseIndex size, DenseIndex rows, DenseIndex cols)
243 inline void conservativeResize(DenseIndex size, DenseIndex, DenseIndex cols)
279 inline void conservativeResize(DenseIndex size, DenseIndex rows, DenseIndex)
PlainObjectBase.h 315 * of rows and/or of columns, you can use conservativeResize(NoChange_t, Index) or
316 * conservativeResize(Index, NoChange_t).
321 EIGEN_STRONG_INLINE void conservativeResize(Index rows, Index cols)
328 * As opposed to conservativeResize(Index rows, Index cols), this version leaves
333 EIGEN_STRONG_INLINE void conservativeResize(Index rows, NoChange_t)
335 // Note: see the comment in conservativeResize(Index,Index)
336 conservativeResize(rows, cols());
341 * As opposed to conservativeResize(Index rows, Index cols), this version leaves
346 EIGEN_STRONG_INLINE void conservativeResize(NoChange_t, Index cols)
348 // Note: see the comment in conservativeResize(Index,Index
    [all...]

Completed in 92 milliseconds