/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/ |
D | vkDefs.hpp | 150 typedef VKAPI_ATTR void* (VKAPI_CALL* PFN_vkAllocationFunction) (void* pUserData, 154 typedef VKAPI_ATTR void* (VKAPI_CALL* PFN_vkReallocationFunction) (void* pUserData, 159 typedef VKAPI_ATTR void (VKAPI_CALL* PFN_vkFreeFunction) (void* pUserData, 161 typedef VKAPI_ATTR void (VKAPI_CALL* PFN_vkInternalAllocationNotification) (void* pUserData, 165 typedef VKAPI_ATTR void (VKAPI_CALL* PFN_vkInternalFreeNotification) (void* pUserData, 177 void* pUserData); 182 void* pUserData); 184 void* pUserData);
|
D | vkAllocationCallbackUtil.cpp | 80 static VKAPI_ATTR void* VKAPI_CALL allocationCallback (void* pUserData, size_t size, size_t alignme… in allocationCallback() argument 82 …return reinterpret_cast<AllocationCallbacks*>(pUserData)->allocate(size, alignment, allocationScop… in allocationCallback() 85 static VKAPI_ATTR void* VKAPI_CALL reallocationCallback (void* pUserData, void* pOriginal, size_t s… in reallocationCallback() argument 87 …return reinterpret_cast<AllocationCallbacks*>(pUserData)->reallocate(pOriginal, size, alignment, a… in reallocationCallback() 90 static VKAPI_ATTR void VKAPI_CALL freeCallback (void* pUserData, void* pMem) in freeCallback() argument 92 reinterpret_cast<AllocationCallbacks*>(pUserData)->free(pMem); in freeCallback() 95 static VKAPI_ATTR void VKAPI_CALL internalAllocationNotificationCallback (void* pUserData, size_t s… in internalAllocationNotificationCallback() argument 97 …reinterpret_cast<AllocationCallbacks*>(pUserData)->notifyInternalAllocation(size, allocationType, … in internalAllocationNotificationCallback() 100 static VKAPI_ATTR void VKAPI_CALL internalFreeNotificationCallback (void* pUserData, size_t size, V… in internalFreeNotificationCallback() argument 102 …reinterpret_cast<AllocationCallbacks*>(pUserData)->notifyInternalFree(size, allocationType, alloca… in internalFreeNotificationCallback() [all …]
|
D | vkDebugReportUtil.cpp | 121 void* pUserData) in debugReportCallback() argument 123 auto recorder = reinterpret_cast<DebugReportRecorder*>(pUserData); in debugReportCallback()
|
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/ |
D | VkDebugUtilsMessenger.cpp | 23 , pUserData(pCreateInfo->pUserData) in DebugUtilsMessenger() 38 (*pfnUserCallback)(messageSeverity, messageTypes, pCallbackData, pUserData); in submitMessage()
|
D | VkMemory.cpp | 42 return pAllocator->pfnAllocation(pAllocator->pUserData, bytes, alignment, allocationScope); in allocateHostMemory() 55 pAllocator->pfnFree(pAllocator->pUserData, ptr); in freeHostMemory()
|
D | VkDebugUtilsMessenger.hpp | 38 void *pUserData = nullptr; member in vk::DebugUtilsMessenger
|
/third_party/mesa3d/src/vulkan/util/ |
D | vk_alloc.c | 20 vk_default_alloc(void *pUserData, in vk_default_alloc() argument 30 vk_default_realloc(void *pUserData, in vk_default_realloc() argument 41 vk_default_free(void *pUserData, void *pMemory) in vk_default_free() argument
|
D | vk_alloc.h | 44 return alloc->pfnAllocation(alloc->pUserData, size, align, scope); in vk_alloc() 66 return alloc->pfnReallocation(alloc->pUserData, ptr, size, align, scope); in vk_realloc() 75 alloc->pfnFree(alloc->pUserData, data); in vk_free()
|
/third_party/mesa3d/src/gallium/drivers/swr/rasterizer/core/ |
D | backend.h | 42 void ProcessSyncBE(DRAW_CONTEXT* pDC, uint32_t workerId, uint32_t macroTile, void* pUserData); 43 void ProcessClearBE(DRAW_CONTEXT* pDC, uint32_t workerId, uint32_t macroTile, void* pUserData); 49 void ProcessShutdownBE(DRAW_CONTEXT* pDC, uint32_t workerId, uint32_t macroTile, void* pUserData);
|
D | frontend.h | 396 void ProcessClear(SWR_CONTEXT* pContext, DRAW_CONTEXT* pDC, uint32_t workerId, void* pUserData); 400 void* pUserData); 404 void* pUserData); 405 void ProcessSync(SWR_CONTEXT* pContext, DRAW_CONTEXT* pDC, uint32_t workerId, void* pUserData); 406 void ProcessShutdown(SWR_CONTEXT* pContext, DRAW_CONTEXT* pDC, uint32_t workerId, void* pUserData);
|
D | backend_clear.cpp | 158 void ProcessClearBE(DRAW_CONTEXT* pDC, uint32_t workerId, uint32_t macroTile, void* pUserData) in ProcessClearBE() argument 165 CLEAR_DESC* pClear = (CLEAR_DESC*)pUserData; in ProcessClearBE() 234 CLEAR_DESC* pClear = (CLEAR_DESC*)pUserData; in ProcessClearBE()
|
D | frontend.cpp | 51 void ProcessSync(SWR_CONTEXT* pContext, DRAW_CONTEXT* pDC, uint32_t workerId, void* pUserData) in ProcessSync() argument 67 void ProcessShutdown(SWR_CONTEXT* pContext, DRAW_CONTEXT* pDC, uint32_t workerId, void* pUserData) in ProcessShutdown() argument 94 void ProcessClear(SWR_CONTEXT* pContext, DRAW_CONTEXT* pDC, uint32_t workerId, void* pUserData) in ProcessClear() argument 96 CLEAR_DESC* pDesc = (CLEAR_DESC*)pUserData; in ProcessClear() 127 void ProcessStoreTiles(SWR_CONTEXT* pContext, DRAW_CONTEXT* pDC, uint32_t workerId, void* pUserData) in ProcessStoreTiles() argument 131 STORE_TILES_DESC* pDesc = (STORE_TILES_DESC*)pUserData; in ProcessStoreTiles() 167 void* pUserData) in ProcessDiscardInvalidateTiles() argument 170 DISCARD_INVALIDATE_TILES_DESC* pDesc = (DISCARD_INVALIDATE_TILES_DESC*)pUserData; in ProcessDiscardInvalidateTiles() 1670 void ProcessDraw(SWR_CONTEXT* pContext, DRAW_CONTEXT* pDC, uint32_t workerId, void* pUserData) in ProcessDraw() argument 1683 DRAW_WORK& work = *(DRAW_WORK*)pUserData; in ProcessDraw()
|
/third_party/skia/third_party/externals/d3d12allocator/src/ |
D | D3D12MemAlloc.h | 704 typedef void* (*ALLOCATE_FUNC_PTR)(size_t Size, size_t Alignment, void* pUserData); 710 typedef void (*FREE_FUNC_PTR)(void* pMemory, void* pUserData); 720 void* pUserData; member 1397 void* pUserData; member 1412 void* pUserData; member 1453 void SetAllocationUserData(UINT64 offset, void* pUserData);
|
/third_party/gstreamer/gstplugins_bad/sys/nvcodec/ |
D | nvcuvid.h | 225 …void *pUserData; /**< IN: User private data passed in to the data handl… member 350 …void *pUserData; /**< IN: User data for callbacks … member
|
/third_party/skia/third_party/externals/angle2/util/windows/third_party/StackWalker/src/ |
D | StackWalker.h | 111 LPVOID pUserData // optional data, which was passed in "ShowCallstack" 120 LPVOID pUserData = NULL // optional to identify some data in the 'readMemoryFunction'-callback
|
/third_party/flutter/skia/third_party/externals/angle2/util/windows/third_party/StackWalker/src/ |
D | StackWalker.h | 111 LPVOID pUserData // optional data, which was passed in "ShowCallstack" 120 LPVOID pUserData = NULL // optional to identify some data in the 'readMemoryFunction'-callback
|
/third_party/flutter/skia/src/gpu/vk/ |
D | GrVkAMDMemoryAllocator.cpp | 76 info.pUserData = nullptr; in allocateMemoryForImage() 108 info.pUserData = nullptr; in allocateMemoryForBuffer()
|
/third_party/flutter/skia/third_party/externals/imgui/examples/example_sdl_vulkan/ |
D | main.cpp | 39 …e_t location, int32_t messageCode, const char* pLayerPrefix, const char* pMessage, void* pUserData) in debug_report() argument 41 …(void)flags; (void)object; (void)location; (void)messageCode; (void)pUserData; (void)pLayerPrefix;… in debug_report() 85 debug_report_ci.pUserData = NULL; in SetupVulkan()
|
/third_party/flutter/skia/third_party/externals/imgui/examples/example_glfw_vulkan/ |
D | main.cpp | 49 …e_t location, int32_t messageCode, const char* pLayerPrefix, const char* pMessage, void* pUserData) in debug_report() argument 51 …(void)flags; (void)object; (void)location; (void)messageCode; (void)pUserData; (void)pLayerPrefix;… in debug_report() 95 debug_report_ci.pUserData = NULL; in SetupVulkan()
|
/third_party/skia/src/gpu/vk/ |
D | GrVkAMDMemoryAllocator.cpp | 115 info.pUserData = nullptr; in allocateImageMemory() 146 info.pUserData = nullptr; in allocateBufferMemory()
|
/third_party/skia/third_party/externals/imgui/examples/example_glfw_vulkan/ |
D | main.cpp | 58 …e_t location, int32_t messageCode, const char* pLayerPrefix, const char* pMessage, void* pUserData) in debug_report() argument 60 …(void)flags; (void)object; (void)location; (void)messageCode; (void)pUserData; (void)pLayerPrefix;… in debug_report() 103 debug_report_ci.pUserData = NULL; in SetupVulkan()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/api/ |
D | vktApiDeviceInitializationTests.cpp | 1782 VKAPI_ATTR void *VKAPI_CALL allocCallbackFunc (void *pUserData, size_t size, size_t alignment, VkSy… in allocCallbackFunc() argument 1804 g_allocatedVector[vectorIdx].userData = (deUint64)pUserData; in allocCallbackFunc() 1816 VKAPI_ATTR void VKAPI_CALL freeCallbackFunc (void *pUserData, void *pMemory) in freeCallbackFunc() argument 1818 DE_UNREF(pUserData); in freeCallbackFunc() 1831 VKAPI_ATTR void *VKAPI_CALL reallocCallbackFunc (void *pUserData, void *pOriginal, size_t size, siz… in reallocCallbackFunc() argument 1841 freeCallbackFunc(pUserData, pOriginal); in reallocCallbackFunc() 1848 void *pNew = allocCallbackFunc(pUserData, size, alignment, allocationScope); in reallocCallbackFunc() 1858 freeCallbackFunc(pUserData, pOriginal); in reallocCallbackFunc() 1867 return allocCallbackFunc(pUserData, size, alignment, allocationScope); in reallocCallbackFunc()
|
/third_party/skia/third_party/externals/imgui/examples/example_sdl_vulkan/ |
D | main.cpp | 50 …e_t location, int32_t messageCode, const char* pLayerPrefix, const char* pMessage, void* pUserData) in debug_report() argument 52 …(void)flags; (void)object; (void)location; (void)messageCode; (void)pUserData; (void)pLayerPrefix;… in debug_report() 95 debug_report_ci.pUserData = NULL; in SetupVulkan()
|
/third_party/skia/third_party/vulkanmemoryallocator/include/ |
D | vk_mem_alloc.h | 2083 void* VMA_NULLABLE pUserData); 2090 void* VMA_NULLABLE pUserData); 2105 void* VMA_NULLABLE pUserData; member 2778 void* VMA_NULLABLE pUserData; member 3114 void* VMA_NULLABLE pUserData; member 3272 void* VMA_NULLABLE pUserData); 4637 pAllocationCallbacks->pUserData, in VmaMalloc() 4653 (*pAllocationCallbacks->pfnFree)(pAllocationCallbacks->pUserData, ptr); in VmaFree() 6011 void SetUserData(VmaAllocator hAllocator, void* pUserData); 6962 void* pUserData, [all …]
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/vulkan/ |
D | BackendVk.cpp | 348 utilsMessengerCreateInfo.pUserData = nullptr; in CreateVkInstance() 385 createInfo.pUserData = nullptr; in RegisterDebugUtils()
|