Home | History | Annotate | Download | only in SparseExtra

Lines Matching refs:outerSize

80     inline Index rows() const { return IsRowMajor ? outerSize() : m_innerSize; }
81 inline Index cols() const { return IsRowMajor ? m_innerSize : outerSize(); }
83 inline Index outerSize() const { return static_cast<Index>(m_data.size()); }
115 for (Index j=0; j<outerSize(); ++j)
123 for (Index j=0; j<outerSize(); ++j)
132 if (outerSize()>0)
134 Index reserveSizePerVector = (std::max)(reserveSize/outerSize(),Index(4));
135 for (Index j=0; j<outerSize(); ++j)
191 for (Index j=0; j<outerSize(); ++j)
199 const Index outerSize = IsRowMajor ? rows : cols;
202 if (Index(m_data.size()) != outerSize)
204 m_data.resize(outerSize);
210 const Index outerSize = IsRowMajor ? rows : cols;
219 if (m_data.size() != outerSize)
221 m_data.resize(outerSize);
229 eigen_assert(innerSize()==0 && outerSize()==0);