Home | History | Annotate | Download | only in SparseCore

Lines Matching refs:outerSize

24     enum { OuterSize = IsRowMajor ? BlockRows : BlockCols };
54 : m_matrix(xpr), m_outerStart(i), m_outerSize(OuterSize)
68 const internal::variable_if_dynamic<Index, OuterSize> m_outerSize;
89 enum { OuterSize = IsRowMajor ? BlockRows : BlockCols };
116 : m_matrix(xpr), m_outerStart(i), m_outerSize(OuterSize)
139 Index tail_size = m_matrix.outerIndexPtr()[m_matrix.outerSize()] - end;
159 newdata.resize(m_matrix.outerIndexPtr()[m_matrix.outerSize()] - block_size + nnz);
188 for(Index k = m_outerStart + m_outerSize.value(); k<=matrix.outerSize(); ++k)
224 return Map<const Matrix<Index,OuterSize,1> >(m_matrix.innerNonZeroPtr()+m_outerStart, m_outerSize.value()).sum();
244 const internal::variable_if_dynamic<Index, OuterSize> m_outerSize;
268 Block<Derived,Dynamic,Dynamic,true> SparseMatrixBase<Derived>::innerVectors(Index outerStart, Index outerSize)
272 IsRowMajor ? outerSize : rows(), IsRowMajor ? cols() : outerSize);
280 const Block<const Derived,Dynamic,Dynamic,true> SparseMatrixBase<Derived>::innerVectors(Index outerStart, Index outerSize) const
284 IsRowMajor ? outerSize : rows(), IsRowMajor ? cols() : outerSize);