Home | History | Annotate | Download | only in SparseExtra

Lines Matching refs:Index

32         inline InnerIterator(const SparseInnerVectorSet& xpr, Index outer)
35 inline Index row() const { return IsRowMajor ? m_outer : this->index(); }
36 inline Index col() const { return IsRowMajor ? this->index() : m_outer; }
38 Index m_outer;
41 inline SparseInnerVectorSet(const MatrixType& matrix, Index outerStart, Index outerSize)
47 inline SparseInnerVectorSet(const MatrixType& matrix, Index outer)
66 for (Index j=0; j<m_outerSize.value(); ++j)
80 Index nonZeros() const
82 Index count = 0;
83 for (Index j=0; j<m_outerSize.value(); ++j)
101 EIGEN_STRONG_INLINE Index rows() const { return IsRowMajor ? m_outerSize.value() : m_matrix.rows(); }
102 EIGEN_STRONG_INLINE Index cols() const { return IsRowMajor ? m_matrix.cols() : m_outerSize.value(); }
107 Index m_outerStart;
108 const internal::variable_if_dynamic<Index, Size> m_outerSize;