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

/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DBoolStack.java35 private int m_allocatedSize; field in class:BoolStack
57 m_allocatedSize = size;
91 if (m_index == m_allocatedSize - 1)
187 m_allocatedSize *= 2;
189 boolean newVector[] = new boolean[m_allocatedSize];
/external/eigen/Eigen/src/SparseCore/
H A DCompressedStorage.h36 : m_values(0), m_indices(0), m_size(0), m_allocatedSize(0)
40 : m_values(0), m_indices(0), m_size(0), m_allocatedSize(0)
46 : m_values(0), m_indices(0), m_size(0), m_allocatedSize(0)
64 std::swap(m_allocatedSize, other.m_allocatedSize);
76 if (newAllocatedSize > m_allocatedSize)
82 if (m_allocatedSize>m_size)
88 if (m_allocatedSize<size)
102 inline size_t allocatedSize() const { return m_allocatedSize; }
116 res.m_allocatedSize
225 size_t m_allocatedSize; member in class:Eigen::internal::CompressedStorage
[all...]
H A DAmbiVector.h31 : m_buffer(0), m_zero(0), m_size(0), m_allocatedSize(0), m_allocatedElements(0), m_mode(-1)
56 if (m_allocatedSize < size)
113 Index m_allocatedSize; member in class:Eigen::internal::AmbiVector
/external/eigen/unsupported/Eigen/src/Skyline/
H A DSkylineStorage.h38 m_allocatedSize(0) {
52 m_allocatedSize(0) {
75 std::swap(m_allocatedSize, other.m_allocatedSize);
89 if (newAllocatedSize > m_allocatedSize)
94 if (m_allocatedSize > m_diagSize + m_upperSize + m_lowerSize)
99 if (m_allocatedSize < diagSize + upperSize + lowerSize)
129 return m_allocatedSize;
183 res.m_allocatedSize = res.m_diagSize = size;
237 m_allocatedSize
253 Index m_allocatedSize; member in class:Eigen::SkylineStorage
[all...]
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DToStream.java3320 private int m_allocatedSize; field in class:ToStream.BoolStack
3342 m_allocatedSize = size;
3376 if (m_index == m_allocatedSize - 1)
3472 m_allocatedSize *= 2;
3474 boolean newVector[] = new boolean[m_allocatedSize];

Completed in 3159 milliseconds