Home
last modified time | relevance | path

Searched refs:my_alloc (Results 1 – 2 of 2) sorted by relevance

/oneTBB/include/oneapi/tbb/
H A Dcombinable.h34 using my_alloc = typename tbb::cache_aligned_allocator<T>; variable
35 using my_ets_type = typename tbb::enumerable_thread_specific<T, my_alloc, ets_no_key>;
H A Dmemory_pool.h176 Alloc my_alloc; // TODO: base-class optimization variable
203 memory_pool<Alloc>::memory_pool(const Alloc &src) : my_alloc(src) { in memory_pool()
219 ptr = self.my_alloc.allocate( bytes/unit_size ); in allocate_request()
238 …self.my_alloc.deallocate( static_cast<typename Alloc::value_type*>(raw_ptr), raw_bytes/unit_size ); in deallocate_request()