Searched refs:m_outerSize (Results 1 – 5 of 5) sorted by relevance
/external/eigen/Eigen/src/SparseCore/ |
D | SparseMatrix.h | 104 Index m_outerSize; 110 …() { return Eigen::Map<Matrix<Index,Dynamic,1> >(m_innerNonZeros, m_innerNonZeros?m_outerSize:0); } 111 …eturn Eigen::Map<const Matrix<Index,Dynamic,1> >(m_innerNonZeros, m_innerNonZeros?m_outerSize:0); } 119 inline Index rows() const { return IsRowMajor ? m_outerSize : m_innerSize; } 121 inline Index cols() const { return IsRowMajor ? m_innerSize : m_outerSize; } 126 inline Index outerSize() const { return m_outerSize; } 240 memset(m_outerIndex, 0, (m_outerSize+1)*sizeof(Index)); 242 memset(m_innerNonZeros, 0, (m_outerSize)*sizeof(Index)); 294 m_innerNonZeros = static_cast<Index*>(std::malloc(m_outerSize * sizeof(Index))); 301 for(Index j=0; j<m_outerSize; ++j) [all …]
|
D | SparseBlock.h | 54 : m_matrix(xpr), m_outerStart(i), m_outerSize(OuterSize) in BlockImpl() 58 …: m_matrix(xpr), m_outerStart(IsRowMajor ? startRow : startCol), m_outerSize(IsRowMajor ? blockRow… in BlockImpl() 71 …EIGEN_STRONG_INLINE Index rows() const { return IsRowMajor ? m_outerSize.value() : m_matrix.rows()… in rows() 72 …EIGEN_STRONG_INLINE Index cols() const { return IsRowMajor ? m_matrix.cols() : m_outerSize.value()… in cols() 78 const internal::variable_if_dynamic<Index, OuterSize> m_outerSize; variable 129 : m_matrix(xpr), m_outerStart(i), m_outerSize(OuterSize) in BlockImpl() 133 …: m_matrix(xpr), m_outerStart(IsRowMajor ? startRow : startCol), m_outerSize(IsRowMajor ? blockRow… in BlockImpl() 150 …Index end = m_matrix.outerIndexPtr()[m_outerStart+m_outerSize.value()]; // ending posiit… 190 for(Index j=0; j<m_outerSize.value(); ++j) 195 for(Index k=0; k<m_outerSize.value(); ++k) [all …]
|
D | MappedSparseMatrix.h | 40 Index m_outerSize; 49 inline Index rows() const { return IsRowMajor ? m_outerSize : m_innerSize; } 50 inline Index cols() const { return IsRowMajor ? m_innerSize : m_outerSize; } 52 inline Index outerSize() const { return m_outerSize; } 109 …: m_outerSize(IsRowMajor?rows:cols), m_innerSize(IsRowMajor?cols:rows), m_nnz(nnz), m_outerIndex(o…
|
/external/eigen/unsupported/Eigen/src/SparseExtra/ |
D | BlockOfDynamicSparseMatrix.h | 48 : m_matrix(matrix), m_outerStart(outerStart), m_outerSize(outerSize) 54 : m_matrix(matrix), m_outerStart(outer), m_outerSize(Size) 72 for (Index j=0; j<m_outerSize.value(); ++j) 89 for (Index j=0; j<m_outerSize.value(); ++j) 107 …EIGEN_STRONG_INLINE Index rows() const { return IsRowMajor ? m_outerSize.value() : m_matrix.rows()… 108 …EIGEN_STRONG_INLINE Index cols() const { return IsRowMajor ? m_matrix.cols() : m_outerSize.value()… 114 const internal::variable_if_dynamic<Index, Size> m_outerSize;
|
/external/eigen/unsupported/Eigen/src/Skyline/ |
D | SkylineMatrix.h | 64 Index m_outerSize; 75 return IsRowMajor ? m_outerSize : m_innerSize; 79 return IsRowMajor ? m_innerSize : m_outerSize; 87 return m_outerSize; 378 memset(m_colStartIndex, 0, (m_outerSize + 1) * sizeof (Index)); 379 memset(m_rowStartIndex, 0, (m_outerSize + 1) * sizeof (Index)); 616 m_outerSize = diagSize; 621 m_outerSize = diagSize; 631 : m_outerSize(-1), m_innerSize(0), m_colStartIndex(0), m_rowStartIndex(0) { 636 : m_outerSize(0), m_innerSize(0), m_colStartIndex(0), m_rowStartIndex(0) { [all …]
|