Home
last modified time | relevance | path

Searched refs:pUserData (Results 1 – 25 of 68) sorted by relevance

123

/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/
DvkDefs.hpp150 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);
DvkAllocationCallbackUtil.cpp80 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 …]
DvkDebugReportUtil.cpp121 void* pUserData) in debugReportCallback() argument
123 auto recorder = reinterpret_cast<DebugReportRecorder*>(pUserData); in debugReportCallback()
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/
DVkDebugUtilsMessenger.cpp23 , pUserData(pCreateInfo->pUserData) in DebugUtilsMessenger()
38 (*pfnUserCallback)(messageSeverity, messageTypes, pCallbackData, pUserData); in submitMessage()
DVkMemory.cpp42 return pAllocator->pfnAllocation(pAllocator->pUserData, bytes, alignment, allocationScope); in allocateHostMemory()
55 pAllocator->pfnFree(pAllocator->pUserData, ptr); in freeHostMemory()
DVkDebugUtilsMessenger.hpp38 void *pUserData = nullptr; member in vk::DebugUtilsMessenger
/third_party/mesa3d/src/vulkan/util/
Dvk_alloc.c20 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
Dvk_alloc.h44 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/
Dbackend.h42 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);
Dfrontend.h396 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);
Dbackend_clear.cpp158 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()
Dfrontend.cpp51 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/
DD3D12MemAlloc.h704 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/
Dnvcuvid.h225 …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/
DStackWalker.h111 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/
DStackWalker.h111 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/
DGrVkAMDMemoryAllocator.cpp76 info.pUserData = nullptr; in allocateMemoryForImage()
108 info.pUserData = nullptr; in allocateMemoryForBuffer()
/third_party/flutter/skia/third_party/externals/imgui/examples/example_sdl_vulkan/
Dmain.cpp39 …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/
Dmain.cpp49 …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/
DGrVkAMDMemoryAllocator.cpp115 info.pUserData = nullptr; in allocateImageMemory()
146 info.pUserData = nullptr; in allocateBufferMemory()
/third_party/skia/third_party/externals/imgui/examples/example_glfw_vulkan/
Dmain.cpp58 …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/
DvktApiDeviceInitializationTests.cpp1782 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/
Dmain.cpp50 …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/
Dvk_mem_alloc.h2083 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/
DBackendVk.cpp348 utilsMessengerCreateInfo.pUserData = nullptr; in CreateVkInstance()
385 createInfo.pUserData = nullptr; in RegisterDebugUtils()

123