Home
last modified time | relevance | path

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

/external/deqp/external/vulkancts/framework/vulkan/
DvkAllocationCallbackUtil.hpp40 class AllocationCallbacks class
43 AllocationCallbacks (void);
44 virtual ~AllocationCallbacks (void);
116 class ChainedAllocator : public AllocationCallbacks
DvkAllocationCallbackUtil.cpp82 …return reinterpret_cast<AllocationCallbacks*>(pUserData)->allocate(size, alignment, allocationScop… in allocationCallback()
87 …return reinterpret_cast<AllocationCallbacks*>(pUserData)->reallocate(pOriginal, size, alignment, a… in reallocationCallback()
92 reinterpret_cast<AllocationCallbacks*>(pUserData)->free(pMem); in freeCallback()
97 …reinterpret_cast<AllocationCallbacks*>(pUserData)->notifyInternalAllocation(size, allocationType, … in internalAllocationNotificationCallback()
102 …reinterpret_cast<AllocationCallbacks*>(pUserData)->notifyInternalFree(size, allocationType, alloca… in internalFreeNotificationCallback()
105 static VkAllocationCallbacks makeCallbacks (AllocationCallbacks* object) in makeCallbacks()
119 AllocationCallbacks::AllocationCallbacks (void) in AllocationCallbacks() function in vk::AllocationCallbacks
124 AllocationCallbacks::~AllocationCallbacks (void) in ~AllocationCallbacks()
/external/vulkan-validation-layers/include/vulkan/
Dvulkan.hpp2817 struct AllocationCallbacks struct
2819AllocationCallbacks( void* pUserData_ = nullptr, PFN_vkAllocationFunction pfnAllocation_ = nullptr… in AllocationCallbacks() function
2829 AllocationCallbacks( VkAllocationCallbacks const & rhs ) in AllocationCallbacks() argument
2831 memcpy( this, &rhs, sizeof(AllocationCallbacks) ); in AllocationCallbacks()
2834 AllocationCallbacks& operator=( VkAllocationCallbacks const & rhs ) in operator =() argument
2836 memcpy( this, &rhs, sizeof(AllocationCallbacks) ); in operator =()
2840 AllocationCallbacks& setPUserData( void* pUserData_ ) in setPUserData() argument
2846 AllocationCallbacks& setPfnAllocation( PFN_vkAllocationFunction pfnAllocation_ ) in setPfnAllocation() argument
2852 AllocationCallbacks& setPfnReallocation( PFN_vkReallocationFunction pfnReallocation_ ) in setPfnReallocation() argument
2858 AllocationCallbacks& setPfnFree( PFN_vkFreeFunction pfnFree_ ) in setPfnFree() argument
[all …]