/third_party/mesa3d/src/virtio/venus-protocol/ |
H A D | vn_protocol_driver_semaphore.h | 301 static inline size_t vn_sizeof_vkCreateSemaphore(VkDevice device, const VkSemaphoreCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSemaphore* pSemaphore) in vn_sizeof_vkCreateSemaphore() argument 314 cmd_size += vn_sizeof_simple_pointer(pSemaphore); in vn_sizeof_vkCreateSemaphore() 315 if (pSemaphore) in vn_sizeof_vkCreateSemaphore() 316 cmd_size += vn_sizeof_VkSemaphore(pSemaphore); in vn_sizeof_vkCreateSemaphore() 321 static inline void vn_encode_vkCreateSemaphore(struct vn_cs_encoder *enc, VkCommandFlagsEXT cmd_flags, VkDevice device, const VkSemaphoreCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSemaphore* pSemaphore) in vn_encode_vkCreateSemaphore() argument 333 if (vn_encode_simple_pointer(enc, pSemaphore)) in vn_encode_vkCreateSemaphore() 334 vn_encode_VkSemaphore(enc, pSemaphore); in vn_encode_vkCreateSemaphore() 337 static inline size_t vn_sizeof_vkCreateSemaphore_reply(VkDevice device, const VkSemaphoreCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSemaphore* pSemaphore) in vn_sizeof_vkCreateSemaphore_reply() argument 347 cmd_size += vn_sizeof_simple_pointer(pSemaphore); in vn_sizeof_vkCreateSemaphore_reply() 348 if (pSemaphore) in vn_sizeof_vkCreateSemaphore_reply() 354 vn_decode_vkCreateSemaphore_reply(struct vn_cs_decoder *dec, VkDevice device, const VkSemaphoreCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSemaphore* pSemaphore) vn_decode_vkCreateSemaphore_reply() argument 595 vn_submit_vkCreateSemaphore(struct vn_instance *vn_instance, VkCommandFlagsEXT cmd_flags, VkDevice device, const VkSemaphoreCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSemaphore* pSemaphore, struct vn_instance_submit_command *submit) vn_submit_vkCreateSemaphore() argument 700 vn_call_vkCreateSemaphore(struct vn_instance *vn_instance, VkDevice device, const VkSemaphoreCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSemaphore* pSemaphore) vn_call_vkCreateSemaphore() argument 716 vn_async_vkCreateSemaphore(struct vn_instance *vn_instance, VkDevice device, const VkSemaphoreCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSemaphore* pSemaphore) vn_async_vkCreateSemaphore() argument [all...] |
/third_party/mesa3d/src/vulkan/runtime/ |
H A D | vk_semaphore.c | 124 VkSemaphore *pSemaphore) in vk_common_CreateSemaphore() 187 *pSemaphore = vk_semaphore_to_handle(semaphore); in vk_common_CreateSemaphore() 121 vk_common_CreateSemaphore(VkDevice _device, const VkSemaphoreCreateInfo *pCreateInfo, const VkAllocationCallbacks *pAllocator, VkSemaphore *pSemaphore) vk_common_CreateSemaphore() argument
|
/third_party/mesa3d/src/freedreno/vulkan/ |
H A D | tu_kgsl.c | 575 VkSemaphore *pSemaphore) in tu_CreateSemaphore() 577 return sync_create(device, false, false, pAllocator, (void**) pSemaphore); in tu_CreateSemaphore() 572 tu_CreateSemaphore(VkDevice device, const VkSemaphoreCreateInfo *pCreateInfo, const VkAllocationCallbacks *pAllocator, VkSemaphore *pSemaphore) tu_CreateSemaphore() argument
|
/third_party/mesa3d/src/virtio/vulkan/ |
H A D | vn_queue.c | 977 VkSemaphore *pSemaphore) in vn_CreateSemaphore() 1012 *pSemaphore = sem_handle; in vn_CreateSemaphore() 974 vn_CreateSemaphore(VkDevice device, const VkSemaphoreCreateInfo *pCreateInfo, const VkAllocationCallbacks *pAllocator, VkSemaphore *pSemaphore) vn_CreateSemaphore() argument
|
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/ |
H A D | libVulkan.cpp | 1412 VKAPI_ATTR VkResult VKAPI_CALL vkCreateSemaphore(VkDevice device, const VkSemaphoreCreateInfo *pCreateInfo, const VkAllocationCallbacks *pAllocator, VkSemaphore *pSemaphore) in vkCreateSemaphore() argument 1414 TRACE("(VkDevice device = %p, const VkSemaphoreCreateInfo* pCreateInfo = %p, const VkAllocationCallbacks* pAllocator = %p, VkSemaphore* pSemaphore = %p)", in vkCreateSemaphore() 1415 device, pCreateInfo, pAllocator, pSemaphore); in vkCreateSemaphore() 1446 return vk::BinarySemaphore::Create(pAllocator, pCreateInfo, pSemaphore, pAllocator); in vkCreateSemaphore() 1450 return vk::TimelineSemaphore::Create(pAllocator, pCreateInfo, pSemaphore, pAllocator); in vkCreateSemaphore()
|
/third_party/vulkan-loader/loader/ |
H A D | trampoline.c | 1381 const VkAllocationCallbacks *pAllocator, VkSemaphore *pSemaphore) { in vkCreateSemaphore() 1389 return disp->CreateSemaphore(device, pCreateInfo, pAllocator, pSemaphore); in vkCreateSemaphore() 1380 vkCreateSemaphore(VkDevice device, const VkSemaphoreCreateInfo *pCreateInfo, const VkAllocationCallbacks *pAllocator, VkSemaphore *pSemaphore) vkCreateSemaphore() argument
|
/third_party/vk-gl-cts/external/vulkancts/scripts/src/ |
H A D | vulkan_sc_core.h | 2655 typedef VkResult (VKAPI_PTR *PFN_vkCreateSemaphore)(VkDevice device, const VkSemaphoreCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSemaphore* pSemaphore); 2934 VkSemaphore* pSemaphore);
|
/third_party/skia/third_party/externals/swiftshader/include/vulkan/ |
H A D | vulkan.hpp | 1708 VkSemaphore * pSemaphore ) const VULKAN_HPP_NOEXCEPT 1710 return ::vkCreateSemaphore( device, pCreateInfo, pAllocator, pSemaphore );
|
H A D | vulkan_core.h | 3551 typedef VkResult (VKAPI_PTR *PFN_vkCreateSemaphore)(VkDevice device, const VkSemaphoreCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSemaphore* pSemaphore); 3864 VkSemaphore* pSemaphore);
|
H A D | vulkan_handles.hpp | 7712 VULKAN_HPP_NAMESPACE::Semaphore * pSemaphore,
|
H A D | vulkan_funcs.hpp | 1565 VULKAN_HPP_NAMESPACE::Semaphore * pSemaphore, 1572 reinterpret_cast<VkSemaphore *>( pSemaphore ) ) ); [all...] |
/third_party/skia/include/third_party/vulkan/vulkan/ |
H A D | vulkan_core.h | 3458 typedef VkResult (VKAPI_PTR *PFN_vkCreateSemaphore)(VkDevice device, const VkSemaphoreCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSemaphore* pSemaphore); 3771 VkSemaphore* pSemaphore);
|
/third_party/mesa3d/include/vulkan/ |
H A D | vulkan_core.h | 3815 typedef VkResult (VKAPI_PTR *PFN_vkCreateSemaphore)(VkDevice device, const VkSemaphoreCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSemaphore* pSemaphore); 4128 VkSemaphore* pSemaphore);
|
/third_party/skia/third_party/externals/dawn/third_party/khronos/vulkan/ |
H A D | vulkan_core.h | 3600 typedef VkResult (VKAPI_PTR *PFN_vkCreateSemaphore)(VkDevice device, const VkSemaphoreCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSemaphore* pSemaphore); 3913 VkSemaphore* pSemaphore);
|
/third_party/vulkan-headers/include/vulkan/ |
H A D | vulkan.hpp | 1266 VkSemaphore * pSemaphore ) const VULKAN_HPP_NOEXCEPT 1268 return ::vkCreateSemaphore( device, pCreateInfo, pAllocator, pSemaphore );
|
H A D | vulkan_core.h | 3965 typedef VkResult (VKAPI_PTR *PFN_vkCreateSemaphore)(VkDevice device, const VkSemaphoreCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSemaphore* pSemaphore); 4278 VkSemaphore* pSemaphore);
|
H A D | vulkan_funcs.hpp | 1532 VULKAN_HPP_NAMESPACE::Semaphore * pSemaphore, 1539 reinterpret_cast<VkSemaphore *>( pSemaphore ) ) ); [all...] |
H A D | vulkan_handles.hpp | 9113 VULKAN_HPP_NAMESPACE::Semaphore * pSemaphore,
|
/third_party/glfw/deps/glad/ |
H A D | vulkan.h | 4995 typedef VkResult (GLAD_API_PTR *PFN_vkCreateSemaphore)(VkDevice device, const VkSemaphoreCreateInfo * pCreateInfo, const VkAllocationCallbacks * pAllocator, VkSemaphore * pSemaphore);
|