Home
last modified time | relevance | path

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

/external/deqp/framework/delibs/decpp/
DdePoolArray.hpp52 class PoolArray class
58 explicit PoolArray (MemPool* pool);
59 PoolArray (MemPool* pool, const PoolArray<T, Alignment>& other);
60 ~PoolArray (void);
92PoolArray (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 …]
DdePoolArray.cpp35 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 …]
DdePoolString.hpp42 class PoolString : public PoolArray<char>
74 : PoolArray<char>(pool) in PoolString()