Home
last modified time | relevance | path

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

/oneTBB/include/oneapi/tbb/
H A Dmemory_pool.h213 const size_t unit_size = sizeof(typename Alloc::value_type); in allocate_request() local
214 __TBBMALLOC_ASSERT( 0 == bytes%unit_size, nullptr); in allocate_request()
219 ptr = self.my_alloc.allocate( bytes/unit_size ); in allocate_request()
236 const size_t unit_size = sizeof(typename Alloc::value_type); in deallocate_request() local
237 __TBBMALLOC_ASSERT( 0 == raw_bytes%unit_size, nullptr); in deallocate_request()
238 …self.my_alloc.deallocate( static_cast<typename Alloc::value_type*>(raw_ptr), raw_bytes/unit_size ); in deallocate_request()