/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/ |
H A D | vkAllocationCallbackUtil.hpp | 46 virtual void* allocate (size_t size, size_t alignment, VkSystemAllocationScope allocationScope) = 0; 47 virtual void* reallocate (void* original, size_t size, size_t alignment, VkSystemAllocationScope allocationScope) = 0; 50 virtual void notifyInternalAllocation(size_t size, VkInternalAllocationType allocationType, VkSystemAllocationScope allocationScope) = 0; 51 virtual void notifyInternalFree (size_t size, VkInternalAllocationType allocationType, VkSystemAllocationScope allocationScope) = 0; 122 void* allocate (size_t size, size_t alignment, VkSystemAllocationScope allocationScope); 123 void* reallocate (void* original, size_t size, size_t alignment, VkSystemAllocationScope allocationScope); 126 void notifyInternalAllocation(size_t size, VkInternalAllocationType allocationType, VkSystemAllocationScope allocationScope); 127 void notifyInternalFree (size_t size, VkInternalAllocationType allocationType, VkSystemAllocationScope allocationScope); 139 void* allocate (size_t size, size_t alignment, VkSystemAllocationScope allocationScope); 140 void* reallocate (void* original, size_t size, size_t alignment, VkSystemAllocationScope allocationScope); [all...] |
H A D | vkAllocationCallbackUtil.cpp | 80 static VKAPI_ATTR void* VKAPI_CALL allocationCallback (void* pUserData, size_t size, size_t alignment, VkSystemAllocationScope allocationScope) in allocationCallback() argument 82 return reinterpret_cast<AllocationCallbacks*>(pUserData)->allocate(size, alignment, allocationScope); in allocationCallback() 85 static VKAPI_ATTR void* VKAPI_CALL reallocationCallback (void* pUserData, void* pOriginal, size_t size, size_t alignment, VkSystemAllocationScope allocationScope) in reallocationCallback() argument 87 return reinterpret_cast<AllocationCallbacks*>(pUserData)->reallocate(pOriginal, size, alignment, allocationScope); in reallocationCallback() 95 static VKAPI_ATTR void VKAPI_CALL internalAllocationNotificationCallback (void* pUserData, size_t size, VkInternalAllocationType allocationType, VkSystemAllocationScope allocationScope) in internalAllocationNotificationCallback() argument 97 reinterpret_cast<AllocationCallbacks*>(pUserData)->notifyInternalAllocation(size, allocationType, allocationScope); in internalAllocationNotificationCallback() 100 static VKAPI_ATTR void VKAPI_CALL internalFreeNotificationCallback (void* pUserData, size_t size, VkInternalAllocationType allocationType, VkSystemAllocationScope allocationScope) in internalFreeNotificationCallback() argument 102 reinterpret_cast<AllocationCallbacks*>(pUserData)->notifyInternalFree(size, allocationType, allocationScope); in internalFreeNotificationCallback() 202 void* ChainedAllocator::allocate (size_t size, size_t alignment, VkSystemAllocationScope allocationScope) in allocate() argument 204 return m_nextAllocator->pfnAllocation(m_nextAllocator->pUserData, size, alignment, allocationScope); in allocate() 207 reallocate(void* original, size_t size, size_t alignment, VkSystemAllocationScope allocationScope) reallocate() argument 217 notifyInternalAllocation(size_t size, VkInternalAllocationType allocationType, VkSystemAllocationScope allocationScope) notifyInternalAllocation() argument 222 notifyInternalFree(size_t size, VkInternalAllocationType allocationType, VkSystemAllocationScope allocationScope) notifyInternalFree() argument 239 allocate(size_t size, size_t alignment, VkSystemAllocationScope allocationScope) allocate() argument 248 reallocate(void* original, size_t size, size_t alignment, VkSystemAllocationScope allocationScope) reallocate() argument 264 notifyInternalAllocation(size_t size, VkInternalAllocationType allocationType, VkSystemAllocationScope allocationScope) notifyInternalAllocation() argument 271 notifyInternalFree(size_t size, VkInternalAllocationType allocationType, VkSystemAllocationScope allocationScope) notifyInternalFree() argument 297 allocate(size_t size, size_t alignment, VkSystemAllocationScope allocationScope) allocate() argument 306 reallocate(void* original, size_t size, size_t alignment, VkSystemAllocationScope allocationScope) reallocate() argument [all...] |
H A D | vkDefs.hpp | 168 VkSystemAllocationScope allocationScope); 173 VkSystemAllocationScope allocationScope); 179 VkSystemAllocationScope allocationScope); 183 VkSystemAllocationScope allocationScope);
|
/third_party/mesa3d/src/vulkan/util/ |
H A D | vk_alloc.c | 23 VkSystemAllocationScope allocationScope) in vk_default_alloc() 34 VkSystemAllocationScope allocationScope) in vk_default_realloc() 20 vk_default_alloc(void *pUserData, size_t size, size_t alignment, VkSystemAllocationScope allocationScope) vk_default_alloc() argument 30 vk_default_realloc(void *pUserData, void *pOriginal, size_t size, size_t alignment, VkSystemAllocationScope allocationScope) vk_default_realloc() argument
|
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/ |
H A D | VkMemory.cpp | 38 void *allocateHostMemory(size_t bytes, size_t alignment, const VkAllocationCallbacks *pAllocator, VkSystemAllocationScope allocationScope) in allocateHostMemory() argument 42 return pAllocator->pfnAllocation(pAllocator->pUserData, bytes, alignment, allocationScope); in allocateHostMemory()
|
H A D | VkMemory.hpp | 32 VkSystemAllocationScope allocationScope);
|
/third_party/vulkan-loader/tests/ |
H A D | loader_alloc_callback_tests.cpp | 113 void* impl_allocation(size_t size, size_t alignment, VkSystemAllocationScope allocationScope) noexcept { 115 void* addr = allocate(size, alignment, allocationScope); 118 void* impl_reallocation(void* pOriginal, size_t size, size_t alignment, VkSystemAllocationScope allocationScope) noexcept { 120 void* addr = reallocate(pOriginal, size, alignment, allocationScope); 129 [[maybe_unused]] VkSystemAllocationScope allocationScope) noexcept { 134 [[maybe_unused]] VkSystemAllocationScope allocationScope) noexcept { 158 VkSystemAllocationScope allocationScope) noexcept { 159 return reinterpret_cast<MemoryTracker*>(pUserData)->impl_allocation(size, alignment, allocationScope); 162 VkSystemAllocationScope allocationScope) noexcept { 163 return reinterpret_cast<MemoryTracker*>(pUserData)->impl_reallocation(pOriginal, size, alignment, allocationScope); [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/api/ |
H A D | vktApiDeviceInitializationTests.cpp | 2449 VKAPI_ATTR void *VKAPI_CALL allocCallbackFunc (void *pUserData, size_t size, size_t alignment, VkSystemAllocationScope allocationScope) in allocCallbackFunc() argument 2470 g_allocatedVector[vectorIdx].allocScope = allocationScope; in allocCallbackFunc() 2498 VKAPI_ATTR void *VKAPI_CALL reallocCallbackFunc (void *pUserData, void *pOriginal, size_t size, size_t alignment, VkSystemAllocationScope allocationScope) in reallocCallbackFunc() argument 2515 void *pNew = allocCallbackFunc(pUserData, size, alignment, allocationScope); in reallocCallbackFunc() 2534 return allocCallbackFunc(pUserData, size, alignment, allocationScope); in reallocCallbackFunc()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/api/ |
H A D | vktApiDeviceInitializationTests.cpp | 2460 VKAPI_ATTR void *VKAPI_CALL allocCallbackFunc (void *pUserData, size_t size, size_t alignment, VkSystemAllocationScope allocationScope) in allocCallbackFunc() argument 2481 g_allocatedVector[vectorIdx].allocScope = allocationScope; in allocCallbackFunc() 2509 VKAPI_ATTR void *VKAPI_CALL reallocCallbackFunc (void *pUserData, void *pOriginal, size_t size, size_t alignment, VkSystemAllocationScope allocationScope) in reallocCallbackFunc() argument 2526 void *pNew = allocCallbackFunc(pUserData, size, alignment, allocationScope); in reallocCallbackFunc() 2545 return allocCallbackFunc(pUserData, size, alignment, allocationScope); in reallocCallbackFunc()
|
/third_party/mesa3d/src/amd/vulkan/ |
H A D | radv_meta.c | 419 meta_alloc(void *_device, size_t size, size_t alignment, VkSystemAllocationScope allocationScope) in meta_alloc() argument 428 VkSystemAllocationScope allocationScope) in meta_realloc() 427 meta_realloc(void *_device, void *original, size_t size, size_t alignment, VkSystemAllocationScope allocationScope) meta_realloc() argument
|
/third_party/glfw/deps/glad/ |
H A D | vulkan.h | 1968 VkSystemAllocationScope allocationScope); 1973 VkSystemAllocationScope allocationScope); 1979 VkSystemAllocationScope allocationScope); 1984 VkSystemAllocationScope allocationScope);
|
/third_party/vk-gl-cts/external/vulkancts/scripts/src/ |
H A D | vulkan_sc_core.h | 1678 VkSystemAllocationScope allocationScope); 1688 VkSystemAllocationScope allocationScope); 1694 VkSystemAllocationScope allocationScope); 1701 VkSystemAllocationScope allocationScope);
|
/third_party/skia/include/third_party/vulkan/vulkan/ |
H A D | vulkan_core.h | 2405 VkSystemAllocationScope allocationScope); 2415 VkSystemAllocationScope allocationScope); 2421 VkSystemAllocationScope allocationScope); 2428 VkSystemAllocationScope allocationScope);
|
/third_party/mesa3d/include/vulkan/ |
H A D | vulkan_core.h | 2762 VkSystemAllocationScope allocationScope); 2772 VkSystemAllocationScope allocationScope); 2778 VkSystemAllocationScope allocationScope); 2785 VkSystemAllocationScope allocationScope);
|
/third_party/skia/third_party/externals/swiftshader/include/vulkan/ |
H A D | vulkan_core.h | 2498 VkSystemAllocationScope allocationScope); 2508 VkSystemAllocationScope allocationScope); 2514 VkSystemAllocationScope allocationScope); 2521 VkSystemAllocationScope allocationScope);
|
/third_party/skia/third_party/externals/dawn/third_party/khronos/vulkan/ |
H A D | vulkan_core.h | 2547 VkSystemAllocationScope allocationScope); 2557 VkSystemAllocationScope allocationScope); 2563 VkSystemAllocationScope allocationScope); 2570 VkSystemAllocationScope allocationScope);
|
/third_party/vulkan-headers/include/vulkan/ |
H A D | vulkan_core.h | 2912 VkSystemAllocationScope allocationScope); 2922 VkSystemAllocationScope allocationScope); 2928 VkSystemAllocationScope allocationScope); 2935 VkSystemAllocationScope allocationScope);
|