Lines Matching refs:Index
38 inline InnerIterator(const SparseInnerVectorSet& xpr, Index outer)
41 inline Index row() const { return IsRowMajor ? m_outer : this->index(); }
42 inline Index col() const { return IsRowMajor ? this->index() : m_outer; }
44 Index m_outer;
47 inline SparseInnerVectorSet(const MatrixType& matrix, Index outerStart, Index outerSize)
53 inline SparseInnerVectorSet(const MatrixType& matrix, Index outer)
72 for (Index j=0; j<m_outerSize.value(); ++j)
86 Index nonZeros() const
88 Index count = 0;
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(); }
113 Index m_outerStart;
114 const internal::variable_if_dynamic<Index, Size> m_outerSize;