Searched refs:m_innerIndices (Results 1 - 2 of 2) sorted by relevance

/external/eigen/Eigen/src/MetisSupport/
H A DMetisSupport.h66 m_innerIndices.resize(TotNz);
83 m_innerIndices(CurNz) = idx;
94 m_innerIndices(CurNz) = idx;
112 output_error = METIS_NodeND(&m, m_indexPtr.data(), m_innerIndices.data(), NULL, NULL, perm.data(), iperm.data());
133 IndexVector m_innerIndices; // Adjacency list member in class:Eigen::MetisOrdering
/external/eigen/Eigen/src/SparseCore/
H A DMappedSparseMatrix.h44 Index* m_innerIndices; member in class:Eigen::MappedSparseMatrix
61 inline const Index* innerIndexPtr() const { return m_innerIndices; }
62 inline Index* innerIndexPtr() { return m_innerIndices; }
77 else if (end>0 && inner==m_innerIndices[end-1])
82 const Index* r = std::lower_bound(&m_innerIndices[start],&m_innerIndices[end-1],inner);
83 const Index id = r-&m_innerIndices[0];
96 Index* r = std::lower_bound(&m_innerIndices[start],&m_innerIndices[end],inner);
97 const Index id = r-&m_innerIndices[
[all...]

Completed in 71 milliseconds