Searched refs:memory_pool_allocator (Results 1 – 3 of 3) sorted by relevance
| /oneTBB/doc/main/reference/scalable_memory_pools/ |
| H A D | memory_pool_allocator_cls.rst | 3 memory_pool_allocator title 41 class memory_pool_allocator { 51 using other = memory_pool_allocator<U>; 55 memory_pool_allocator(const memory_pool_allocator& src) throw(); 57 memory_pool_allocator(const memory_pool_allocator<U,P>& src) throw(); 68 class memory_pool_allocator<void> { 74 using other = memory_pool_allocator<U>; 78 memory_pool_allocator(const memory_pool_allocator& src) throw(); 80 memory_pool_allocator(const memory_pool_allocator<U>& src) throw(); 86 inline bool operator==( const memory_pool_allocator<T>& a, [all …]
|
| /oneTBB/include/oneapi/tbb/ |
| H A D | memory_pool.h | 78 class memory_pool_allocator { 83 friend class memory_pool_allocator; variable 85 … friend bool operator==( const memory_pool_allocator<V,R>& a, const memory_pool_allocator<U,R>& b); 87 … friend bool operator!=( const memory_pool_allocator<V,R>& a, const memory_pool_allocator<U,R>& b); 101 memory_pool_allocator(const memory_pool_allocator& src) throw() : my_pool(src.my_pool) {} in throw() 103 memory_pool_allocator(const memory_pool_allocator<U,P>& src) throw() : my_pool(src.my_pool) {} in memory_pool_allocator() function 142 class memory_pool_allocator<void, P> { 153 memory_pool_allocator( const memory_pool_allocator& src) throw() : my_pool(src.my_pool) {} in throw() 155 memory_pool_allocator(const memory_pool_allocator<U,P>& src) throw() : my_pool(src.my_pool) {} in memory_pool_allocator() function 162 … friend bool operator==( const memory_pool_allocator<V,R>& a, const memory_pool_allocator<U,R>& b); [all …]
|
| /oneTBB/test/tbbmalloc/ |
| H A D | test_scalable_allocator.cpp | 191 TestAllocator(Concept, tbb::memory_pool_allocator<void>(pool)); 206 TestAllocator(Concept, tbb::memory_pool_allocator<void>(pool) ); 217 TestAllocator(Concept, tbb::memory_pool_allocator<void>(pool) ); 236 tbb::memory_pool_allocator<int> mpalloc(mpool); 238 TestAllocator<tbb::memory_pool_allocator<int>>(Concept, mpalloc); 239 TestAllocator<tbb::memory_pool_allocator<void>>(Concept, mpalloc); 243 …TestAllocator<tbb::memory_pool_allocator<void>>(Comparison, tbb::memory_pool_allocator<void>(mpool… 244 TestAllocator<tbb::memory_pool_allocator<int>>(Comparison, mpalloc); 281 … TestAllocator<tbb::memory_pool_allocator<void>>(Broken, tbb::memory_pool_allocator<void>(mpool)); 291 TestAllocatorWithSTL(tbb::memory_pool_allocator<void>(mpool) ); [all …]
|