Home
last modified time | relevance | path

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

/external/eigen/Eigen/src/SparseCore/
DCompressedStorage.h36 : m_values(0), m_indices(0), m_size(0), m_allocatedSize(0) in CompressedStorage()
40 : m_values(0), m_indices(0), m_size(0), m_allocatedSize(0) in CompressedStorage()
46 : m_values(0), m_indices(0), m_size(0), m_allocatedSize(0) in CompressedStorage()
67 std::swap(m_allocatedSize, other.m_allocatedSize); in swap()
79 if (newAllocatedSize > m_allocatedSize) in reserve()
85 if (m_allocatedSize>m_size) in squeeze()
91 if (m_allocatedSize<size)
110 inline Index allocatedSize() const { return m_allocatedSize; } in allocatedSize()
179 if (m_allocatedSize<m_size+1)
181 m_allocatedSize = 2*(m_size+1);
[all …]
DAmbiVector.h31 : m_buffer(0), m_zero(0), m_size(0), m_allocatedSize(0), m_allocatedElements(0), m_mode(-1) in AmbiVector()
56 if (m_allocatedSize < size) in resize()
117 StorageIndex m_allocatedSize; variable
/external/apache-xml/src/main/java/org/apache/xml/utils/
DBoolStack.java35 private int m_allocatedSize; field in BoolStack
57 m_allocatedSize = size; in BoolStack()
91 if (m_index == m_allocatedSize - 1) in push()
187 m_allocatedSize *= 2; in grow()
189 boolean newVector[] = new boolean[m_allocatedSize]; in grow()
/external/eigen/unsupported/Eigen/src/Skyline/
DSkylineStorage.h38 m_allocatedSize(0) { in SkylineStorage()
52 m_allocatedSize(0) { in SkylineStorage()
75 std::swap(m_allocatedSize, other.m_allocatedSize); in swap()
89 if (newAllocatedSize > m_allocatedSize) in reserve()
94 if (m_allocatedSize > m_diagSize + m_upperSize + m_lowerSize) in squeeze()
99 if (m_allocatedSize < diagSize + upperSize + lowerSize)
129 return m_allocatedSize; in allocatedSize()
183 res.m_allocatedSize = res.m_diagSize = size; in Map()
237 m_allocatedSize = diagSize + upperSize + lowerSize; in reallocate()
253 Index m_allocatedSize; variable
/external/apache-xml/src/main/java/org/apache/xml/serializer/
DToStream.java3320 private int m_allocatedSize; field in ToStream.BoolStack
3342 m_allocatedSize = size; in BoolStack()
3376 if (m_index == m_allocatedSize - 1) in push()
3472 m_allocatedSize *= 2; in grow()
3474 boolean newVector[] = new boolean[m_allocatedSize]; in grow()