Searched defs:lowerProfileSize (Results 1 - 1 of 1) sorted by relevance

/external/eigen/unsupported/Eigen/src/Skyline/
H A DSkylineStorage.h87 void reserve(Index size, Index upperProfileSize, Index lowerProfileSize, Index upperSize, Index lowerSize) { argument
90 reallocate(size, upperProfileSize, lowerProfileSize, upperSize, lowerSize);
98 void resize(Index diagSize, Index upperProfileSize, Index lowerProfileSize, Index upperSize, Index lowerSize, float reserveSizeFactor = 0) { argument
100 reallocate(diagSize, upperProfileSize, lowerProfileSize, upperSize + Index(reserveSizeFactor * upperSize), lowerSize + Index(reserveSizeFactor * lowerSize));
105 m_lowerProfileSize = lowerProfileSize;
124 inline Index lowerProfileSize() const { function in class:Eigen::SkylineStorage
203 inline void reallocate(Index diagSize, Index upperProfileSize, Index lowerProfileSize, Index upperSize, Index lowerSize) { argument
209 Index* lowerProfile = new Index[lowerProfileSize];
215 Index copyLowerProfileSize = (std::min)(lowerProfileSize, m_lowerProfileSize);

Completed in 101 milliseconds