A memory manager using power-of-two pages that can be split to deal with allocation requests of vario...
Definition binary_page_memory_resource.hpp:37
VECMEM_CORE_EXPORT ~binary_page_memory_resource()
Deconstruct a binary page memory manager, freeing all allocated blocks upstream.
virtual VECMEM_CORE_EXPORT void do_deallocate(void *p, std::size_t, std::size_t) override final
De-allocate a previously allocated memory blob.
virtual VECMEM_CORE_EXPORT void * do_allocate(std::size_t, std::size_t) override final
Allocate a blob of memory.
VECMEM_CORE_EXPORT binary_page_memory_resource & operator=(binary_page_memory_resource &&rhs)
Move assignment operator.
VECMEM_CORE_EXPORT binary_page_memory_resource(binary_page_memory_resource &&parent)
Move constructor.
binary_page_memory_resource & operator=(const binary_page_memory_resource &)=delete
Disallow copying the memory resource.
binary_page_memory_resource(const binary_page_memory_resource &)=delete
Disallow copying the memory resource.
std::vector< T, vecmem::polymorphic_allocator< T > > vector
Alias type for vectors with our polymorphic allocator.
Definition vector.hpp:35