Searched refs:PoolArray (Results 1 – 4 of 4) sorted by relevance
/external/deqp/framework/delibs/decpp/ |
D | dePoolArray.hpp | 52 class PoolArray class 58 explicit PoolArray (MemPool* pool); 59 PoolArray (MemPool* pool, const PoolArray<T, Alignment>& other); 60 ~PoolArray (void); 92 …PoolArray (const PoolArray<T, Alignment>& other); // \note Default copy ctor is not allowed, use… 123 PoolArrayConstIterator (const PoolArray<T, Alignment>* array, deIntptr ndx); 129 const PoolArray<T, Alignment>* getArray (void) const throw() { return m_array; } in getArray() 152 const PoolArray<T, Alignment>* m_array; 160 PoolArrayIterator (PoolArray<T, Alignment>* array, deIntptr ndx); 165 PoolArray<T, Alignment>* getArray (void) const throw() { return m_array; } in getArray() [all …]
|
D | dePoolArray.cpp | 35 PoolArray<int> arr (&pool); in intArrayTest() 36 PoolArray<deUint16> arr16 (&pool); in intArrayTest() 90 PoolArray<int> arr2(&pool); in intArrayTest() 109 PoolArray<int, 16> arr (&pool); in alignedIntArrayTest() 110 PoolArray<deUint16, 8> arr16 (&pool); in alignedIntArrayTest() 170 PoolArray<int, 32> arr2(&pool); in alignedIntArrayTest() 241 PoolArray<RefCount> arr (&pool); in sideEffectTest() 273 PoolArray<int> arr (&pool); in iteratorTest() 280 const PoolArray<int>& cRef = arr; in iteratorTest() 282 for (PoolArray<int>::ConstIterator iter = cRef.begin(); iter != cRef.end(); iter++, ndx++) in iteratorTest() [all …]
|
D | dePoolString.hpp | 42 class PoolString : public PoolArray<char> 74 : PoolArray<char>(pool) in PoolString()
|
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/LinearMath/ |
D | btConvexHullComputer.cpp | 665 template <typename T> class PoolArray class in btConvexHullInternal 672 PoolArray<T>* next; 674 PoolArray(int size): size(size), next(NULL) in PoolArray() function in btConvexHullInternal::PoolArray 679 ~PoolArray() in ~PoolArray() 698 PoolArray<T>* arrays; 699 PoolArray<T>* nextArray; 712 PoolArray<T>* p = arrays; in ~Pool() 714 p->~PoolArray<T>(); in ~Pool() 735 PoolArray<T>* p = nextArray; in newObject() 742 p = new(btAlignedAlloc(sizeof(PoolArray<T>), 16)) PoolArray<T>(arraySize); in newObject()
|