Home
last modified time | relevance | path

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

/external/deqp/framework/delibs/decpp/
DdePoolArray.hpp52 class PoolArray class
61 explicit PoolArray (MemPool* pool);
62 PoolArray (MemPool* pool, const PoolArray<T, Alignment>& other);
63 ~PoolArray (void);
101PoolArray (const PoolArray<T, Alignment>& other); // \note Default copy ctor is not allowed, use…
132 PoolArrayConstIterator (const PoolArray<T, Alignment>* array, deIntptr ndx);
138 const PoolArray<T, Alignment>* getArray (void) const throw() { return m_array; } in getArray()
161 const PoolArray<T, Alignment>* m_array;
169 PoolArrayIterator (PoolArray<T, Alignment>* array, deIntptr ndx);
174 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()
/external/deqp/external/vulkancts/modules/vulkan/
DvktBuildPrograms.cpp371 de::PoolArray<Program> programs (&programPool); in buildPrograms()
375 de::PoolArray<BuildGlslTask> buildGlslTasks (&tmpPool); in buildPrograms()
376 de::PoolArray<BuildSpirVAsmTask> buildSpirvAsmTasks (&tmpPool); in buildPrograms()
428 …for (de::PoolArray<Program>::iterator progIter = programs.begin(); progIter != programs.end(); ++p… in buildPrograms()
443 …for (de::PoolArray<Program>::iterator progIter = programs.begin(); progIter != programs.end(); ++p… in buildPrograms()
455 …for (de::PoolArray<Program>::iterator progIter = programs.begin(); progIter != programs.end(); ++p… in buildPrograms()