Home
last modified time | relevance | path

Searched refs:m_allocatedElements (Results 1 – 1 of 1) sorted by relevance

/external/eigen/Eigen/src/SparseCore/
DAmbiVector.h31 : m_buffer(0), m_zero(0), m_size(0), m_allocatedSize(0), m_allocatedElements(0), m_mode(-1) in AmbiVector()
73 m_allocatedElements = (allocSize*sizeof(Scalar))/sizeof(ListEl); in reallocate()
78 m_allocatedElements = (size*sizeof(Scalar))/sizeof(ListEl); in reallocate()
88 Index copyElements = m_allocatedElements; in reallocateSparse()
89 m_allocatedElements = (std::min)(Index(m_allocatedElements*1.5),m_size); in reallocateSparse()
90 Index allocSize = m_allocatedElements * sizeof(ListEl); in reallocateSparse()
114 Index m_allocatedElements; variable
231 if (m_llSize>=m_allocatedElements) in coeffRef()
236 … eigen_internal_assert(m_llSize<m_allocatedElements && "internal error: overflow in sparse mode"); in coeffRef()