HomeSort by relevance Sort by last modified time
    Searched refs:m_outerIndex (Results 1 - 2 of 2) sorted by null

  /external/eigen/Eigen/src/SparseCore/
SparseMatrix.h 106 Index* m_outerIndex;
149 inline const Index* outerIndexPtr() const { return m_outerIndex; }
153 inline Index* outerIndexPtr() { return m_outerIndex; }
177 Index end = m_innerNonZeros ? m_outerIndex[outer] + m_innerNonZeros[outer] : m_outerIndex[outer+1];
178 return m_data.atInRange(m_outerIndex[outer], end, inner);
196 Index start = m_outerIndex[outer];
197 Index end = m_innerNonZeros ? m_outerIndex[outer] + m_innerNonZeros[outer] : m_outerIndex[outer+1];
240 memset(m_outerIndex, 0, (m_outerSize+1)*sizeof(Index))
    [all...]
MappedSparseMatrix.h 43 Index* m_outerIndex;
64 inline const Index* outerIndexPtr() const { return m_outerIndex; }
65 inline Index* outerIndexPtr() { return m_outerIndex; }
73 Index start = m_outerIndex[outer];
74 Index end = m_outerIndex[outer+1];
92 Index start = m_outerIndex[outer];
93 Index end = m_outerIndex[outer+1];
109 : m_outerSize(IsRowMajor?rows:cols), m_innerSize(IsRowMajor?cols:rows), m_nnz(nnz), m_outerIndex(outerIndexPtr),

Completed in 65 milliseconds