Lines Matching refs:PoolArray
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()
289 for (PoolArray<int>::ConstIterator iter = arr.begin(); iter != arr.end(); iter++, ndx++) in iteratorTest()
329 for (PoolArray<int>::Iterator iter = arr.begin(); iter != arr.end(); iter++, ndx++) in iteratorTest()