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

  /external/eigen/unsupported/Eigen/src/Skyline/
SkylineMatrix.h 131 return &m_data.upperProfile(0);
135 return &m_data.upperProfile(0);
159 const Index minOuterIndex = inner - m_data.upperProfile(inner);
161 return this->m_data.upper(m_colStartIndex[inner] + outer - (inner - m_data.upperProfile(inner)));
177 const Index maxOuterIndex = inner + m_data.upperProfile(inner);
208 const Index minOuterIndex = inner - m_data.upperProfile(inner);
210 return this->m_data.upper(m_colStartIndex[inner] + outer - (inner - m_data.upperProfile(inner)));
221 const Index maxOuterIndex = inner + m_data.upperProfile(inner);
273 const Index minOuterIndex = inner - m_data.upperProfile(inner);
275 return this->m_data.upper(m_colStartIndex[inner] + outer - (inner - m_data.upperProfile(inner)))
    [all...]
SkylineStorage.h 160 inline Index& upperProfile(Index i) {
164 inline const Index& upperProfile(Index i) const {
176 static SkylineStorage Map(Index* upperProfile, Index* lowerProfile, Scalar* diag, Scalar* upper, Scalar* lower, Index size, Index upperSize, Index lowerSize) {
178 res.m_upperProfile = upperProfile;
208 Index* upperProfile = new Index[upperProfileSize];
221 memcpy(upperProfile, m_upperProfile, copyUpperProfileSize * sizeof (Index));
235 m_upperProfile = upperProfile;

Completed in 667 milliseconds