/third_party/mesa3d/src/virtio/venus-protocol/ |
H A D | vn_protocol_driver_fence.h | 283 static inline size_t vn_sizeof_vkResetFences(VkDevice device, uint32_t fenceCount, const VkFence* pFences) in vn_sizeof_vkResetFences() argument 291 if (pFences) { in vn_sizeof_vkResetFences() 294 cmd_size += vn_sizeof_VkFence(&pFences[i]); in vn_sizeof_vkResetFences() 302 static inline void vn_encode_vkResetFences(struct vn_cs_encoder *enc, VkCommandFlagsEXT cmd_flags, VkDevice device, uint32_t fenceCount, const VkFence* pFences) in vn_encode_vkResetFences() argument 311 if (pFences) { in vn_encode_vkResetFences() 314 vn_encode_VkFence(enc, &pFences[i]); in vn_encode_vkResetFences() 320 static inline size_t vn_sizeof_vkResetFences_reply(VkDevice device, uint32_t fenceCount, const VkFence* pFences) in vn_sizeof_vkResetFences_reply() argument 329 /* skip pFences */ in vn_sizeof_vkResetFences_reply() 334 static inline VkResult vn_decode_vkResetFences_reply(struct vn_cs_decoder *dec, VkDevice device, uint32_t fenceCount, const VkFence* pFences) in vn_decode_vkResetFences_reply() argument 344 /* skip pFences */ in vn_decode_vkResetFences_reply() 399 vn_sizeof_vkWaitForFences(VkDevice device, uint32_t fenceCount, const VkFence* pFences, VkBool32 waitAll, uint64_t timeout) vn_sizeof_vkWaitForFences() argument 420 vn_encode_vkWaitForFences(struct vn_cs_encoder *enc, VkCommandFlagsEXT cmd_flags, VkDevice device, uint32_t fenceCount, const VkFence* pFences, VkBool32 waitAll, uint64_t timeout) vn_encode_vkWaitForFences() argument 440 vn_sizeof_vkWaitForFences_reply(VkDevice device, uint32_t fenceCount, const VkFence* pFences, VkBool32 waitAll, uint64_t timeout) vn_sizeof_vkWaitForFences_reply() argument 456 vn_decode_vkWaitForFences_reply(struct vn_cs_decoder *dec, VkDevice device, uint32_t fenceCount, const VkFence* pFences, VkBool32 waitAll, uint64_t timeout) vn_decode_vkWaitForFences_reply() argument 515 vn_submit_vkResetFences(struct vn_instance *vn_instance, VkCommandFlagsEXT cmd_flags, VkDevice device, uint32_t fenceCount, const VkFence* pFences, struct vn_instance_submit_command *submit) vn_submit_vkResetFences() argument 557 vn_submit_vkWaitForFences(struct vn_instance *vn_instance, VkCommandFlagsEXT cmd_flags, VkDevice device, uint32_t fenceCount, const VkFence* pFences, VkBool32 waitAll, uint64_t timeout, struct vn_instance_submit_command *submit) vn_submit_vkWaitForFences() argument 619 vn_call_vkResetFences(struct vn_instance *vn_instance, VkDevice device, uint32_t fenceCount, const VkFence* pFences) vn_call_vkResetFences() argument 635 vn_async_vkResetFences(struct vn_instance *vn_instance, VkDevice device, uint32_t fenceCount, const VkFence* pFences) vn_async_vkResetFences() argument 663 vn_call_vkWaitForFences(struct vn_instance *vn_instance, VkDevice device, uint32_t fenceCount, const VkFence* pFences, VkBool32 waitAll, uint64_t timeout) vn_call_vkWaitForFences() argument 679 vn_async_vkWaitForFences(struct vn_instance *vn_instance, VkDevice device, uint32_t fenceCount, const VkFence* pFences, VkBool32 waitAll, uint64_t timeout) vn_async_vkWaitForFences() argument [all...] |
/third_party/mesa3d/src/vulkan/runtime/ |
H A D | vk_fence.c | 204 const VkFence *pFences) in vk_common_ResetFences() 209 VK_FROM_HANDLE(vk_fence, fence, pFences[i]); in vk_common_ResetFences() 213 * "If any member of pFences currently has its payload imported with in vk_common_ResetFences() 251 const VkFence *pFences, in vk_common_WaitForFences() 268 VK_FROM_HANDLE(vk_fence, fence, pFences[i]); in vk_common_WaitForFences() 202 vk_common_ResetFences(VkDevice _device, uint32_t fenceCount, const VkFence *pFences) vk_common_ResetFences() argument 249 vk_common_WaitForFences(VkDevice _device, uint32_t fenceCount, const VkFence *pFences, VkBool32 waitAll, uint64_t timeout) vk_common_WaitForFences() argument
|
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/ |
H A D | VkDevice.cpp | 228 VkResult Device::waitForFences(uint32_t fenceCount, const VkFence *pFences, VkBool32 waitAll, uint64_t timeout) in waitForFences() argument 239 if(Cast(pFences[i])->getStatus() != VK_SUCCESS) // At least one fence is not signaled in waitForFences() 246 if(Cast(pFences[i])->wait() != VK_SUCCESS) // At least one fence is not signaled in waitForFences() 253 if(Cast(pFences[i])->wait(end_ns) != VK_SUCCESS) // At least one fence is not signaled in waitForFences() 267 events.push_back(Cast(pFences[i])->getCountedEvent()->event()); in waitForFences()
|
H A D | VkDevice.hpp | 61 VkResult waitForFences(uint32_t fenceCount, const VkFence *pFences, VkBool32 waitAll, uint64_t timeout);
|
H A D | libVulkan.cpp | 1384 VKAPI_ATTR VkResult VKAPI_CALL vkResetFences(VkDevice device, uint32_t fenceCount, const VkFence *pFences) in vkResetFences() argument 1386 TRACE("(VkDevice device = %p, uint32_t fenceCount = %d, const VkFence* pFences = %p)", in vkResetFences() 1387 device, fenceCount, pFences); in vkResetFences() 1391 vk::Cast(pFences[i])->reset(); in vkResetFences() 1404 VKAPI_ATTR VkResult VKAPI_CALL vkWaitForFences(VkDevice device, uint32_t fenceCount, const VkFence *pFences, VkBool32 waitAll, uint64_t timeout) in vkWaitForFences() argument 1406 TRACE("(VkDevice device = %p, uint32_t fenceCount = %d, const VkFence* pFences = %p, VkBool32 waitAll = %d, uint64_t timeout = %" PRIu64 ")", in vkWaitForFences() 1407 device, int(fenceCount), pFences, int(waitAll), timeout); in vkWaitForFences() 1409 return vk::Cast(device)->waitForFences(fenceCount, pFences, waitAll, timeout); in vkWaitForFences()
|
/third_party/mesa3d/src/freedreno/vulkan/ |
H A D | tu_kgsl.c | 638 const VkFence *pFences, in tu_WaitForFences() 643 struct tu_syncobj s = sync_merge((const VkSemaphore*) pFences, count, waitAll, false); in tu_WaitForFences() 663 tu_ResetFences(VkDevice _device, uint32_t count, const VkFence *pFences) in tu_ResetFences() argument 666 TU_FROM_HANDLE(tu_syncobj, sync, pFences[i]); in tu_ResetFences() 636 tu_WaitForFences(VkDevice _device, uint32_t count, const VkFence *pFences, VkBool32 waitAll, uint64_t timeout) tu_WaitForFences() argument
|
/third_party/mesa3d/src/virtio/vulkan/ |
H A D | vn_queue.c | 691 vn_ResetFences(VkDevice device, uint32_t fenceCount, const VkFence *pFences) in vn_ResetFences() argument 698 vn_call_vkResetFences(dev->instance, device, fenceCount, pFences); in vn_ResetFences() 700 vn_async_vkResetFences(dev->instance, device, fenceCount, pFences); in vn_ResetFences() 703 struct vn_fence *fence = vn_fence_from_handle(pFences[i]); in vn_ResetFences() 809 const VkFence *pFences, in vn_WaitForFences() 830 memcpy(fences, pFences, sizeof(*fences) * fenceCount); in vn_WaitForFences() 841 result = vn_find_first_signaled_fence(device, pFences, fenceCount); in vn_WaitForFences() 807 vn_WaitForFences(VkDevice device, uint32_t fenceCount, const VkFence *pFences, VkBool32 waitAll, uint64_t timeout) vn_WaitForFences() argument
|
/third_party/vulkan-loader/loader/ |
H A D | trampoline.c | 1346 LOADER_EXPORT VKAPI_ATTR VkResult VKAPI_CALL vkResetFences(VkDevice device, uint32_t fenceCount, const VkFence *pFences) { in vkResetFences() argument 1354 return disp->ResetFences(device, fenceCount, pFences); in vkResetFences() 1368 LOADER_EXPORT VKAPI_ATTR VkResult VKAPI_CALL vkWaitForFences(VkDevice device, uint32_t fenceCount, const VkFence *pFences, in vkWaitForFences() argument 1377 return disp->WaitForFences(device, fenceCount, pFences, waitAll, timeout); in vkWaitForFences()
|
/third_party/vk-gl-cts/external/vulkancts/scripts/src/ |
H A D | vulkan_sc_core.h | 2652 typedef VkResult (VKAPI_PTR *PFN_vkResetFences)(VkDevice device, uint32_t fenceCount, const VkFence* pFences); 2654 typedef VkResult (VKAPI_PTR *PFN_vkWaitForFences)(VkDevice device, uint32_t fenceCount, const VkFence* pFences, VkBool32 waitAll, uint64_t timeout); 2917 const VkFence* pFences); 2926 const VkFence* pFences,
|
/third_party/skia/third_party/externals/swiftshader/include/vulkan/ |
H A D | vulkan.hpp | 1686 VkResult vkResetFences( VkDevice device, uint32_t fenceCount, const VkFence * pFences ) const VULKAN_HPP_NOEXCEPT 1688 return ::vkResetFences( device, fenceCount, pFences ); 1698 const VkFence * pFences, 1702 return ::vkWaitForFences( device, fenceCount, pFences, waitAll, timeout );
|
H A D | vulkan_core.h | 3548 typedef VkResult (VKAPI_PTR *PFN_vkResetFences)(VkDevice device, uint32_t fenceCount, const VkFence* pFences); 3550 typedef VkResult (VKAPI_PTR *PFN_vkWaitForFences)(VkDevice device, uint32_t fenceCount, const VkFence* pFences, VkBool32 waitAll, uint64_t timeout); 3847 const VkFence* pFences); 3856 const VkFence* pFences,
|
H A D | vulkan_handles.hpp | 7673 const VULKAN_HPP_NAMESPACE::Fence * pFences, 7696 const VULKAN_HPP_NAMESPACE::Fence * pFences,
|
H A D | vulkan_funcs.hpp | 1489 const VULKAN_HPP_NAMESPACE::Fence * pFences, 1493 return static_cast<Result>( d.vkResetFences( m_device, fenceCount, reinterpret_cast<const VkFence *>( pFences ) ) ); 1531 const VULKAN_HPP_NAMESPACE::Fence * pFences, 1538 m_device, fenceCount, reinterpret_cast<const VkFence *>( pFences ), static_cast<VkBool32>( waitAll ), timeout ) ); [all...] |
/third_party/skia/include/third_party/vulkan/vulkan/ |
H A D | vulkan_core.h | 3455 typedef VkResult (VKAPI_PTR *PFN_vkResetFences)(VkDevice device, uint32_t fenceCount, const VkFence* pFences); 3457 typedef VkResult (VKAPI_PTR *PFN_vkWaitForFences)(VkDevice device, uint32_t fenceCount, const VkFence* pFences, VkBool32 waitAll, uint64_t timeout); 3754 const VkFence* pFences); 3763 const VkFence* pFences,
|
/third_party/mesa3d/include/vulkan/ |
H A D | vulkan_core.h | 3812 typedef VkResult (VKAPI_PTR *PFN_vkResetFences)(VkDevice device, uint32_t fenceCount, const VkFence* pFences); 3814 typedef VkResult (VKAPI_PTR *PFN_vkWaitForFences)(VkDevice device, uint32_t fenceCount, const VkFence* pFences, VkBool32 waitAll, uint64_t timeout); 4111 const VkFence* pFences); 4120 const VkFence* pFences,
|
/third_party/skia/third_party/externals/dawn/third_party/khronos/vulkan/ |
H A D | vulkan_core.h | 3597 typedef VkResult (VKAPI_PTR *PFN_vkResetFences)(VkDevice device, uint32_t fenceCount, const VkFence* pFences); 3599 typedef VkResult (VKAPI_PTR *PFN_vkWaitForFences)(VkDevice device, uint32_t fenceCount, const VkFence* pFences, VkBool32 waitAll, uint64_t timeout); 3896 const VkFence* pFences); 3905 const VkFence* pFences,
|
/third_party/vulkan-headers/include/vulkan/ |
H A D | vulkan.hpp | 1248 VkResult vkResetFences( VkDevice device, uint32_t fenceCount, const VkFence * pFences ) const VULKAN_HPP_NOEXCEPT 1250 return ::vkResetFences( device, fenceCount, pFences ); 1258 VkResult vkWaitForFences( VkDevice device, uint32_t fenceCount, const VkFence * pFences, VkBool32 waitAll, uint64_t timeout ) const VULKAN_HPP_NOEXCEPT 1260 return ::vkWaitForFences( device, fenceCount, pFences, waitAll, timeout );
|
H A D | vulkan_core.h | 3962 typedef VkResult (VKAPI_PTR *PFN_vkResetFences)(VkDevice device, uint32_t fenceCount, const VkFence* pFences); 3964 typedef VkResult (VKAPI_PTR *PFN_vkWaitForFences)(VkDevice device, uint32_t fenceCount, const VkFence* pFences, VkBool32 waitAll, uint64_t timeout); 4261 const VkFence* pFences); 4270 const VkFence* pFences, 15070 const VkFence* pFences; member
|
H A D | vulkan_funcs.hpp | 1455 const VULKAN_HPP_NAMESPACE::Fence * pFences, 1459 return static_cast<Result>( d.vkResetFences( m_device, fenceCount, reinterpret_cast<const VkFence *>( pFences ) ) ); 1500 const VULKAN_HPP_NAMESPACE::Fence * pFences, 1507 d.vkWaitForFences( m_device, fenceCount, reinterpret_cast<const VkFence *>( pFences ), static_cast<VkBool32>( waitAll ), timeout ) ); [all...] |
H A D | vulkan_handles.hpp | 9078 const VULKAN_HPP_NAMESPACE::Fence * pFences, 9098 const VULKAN_HPP_NAMESPACE::Fence * pFences,
|
H A D | vulkan_structs.hpp | [all...] |
H A D | vulkan_hash.hpp | 14987 VULKAN_HPP_HASH_COMBINE( seed, swapchainPresentFenceInfoEXT.pFences );
|
/third_party/glfw/deps/glad/ |
H A D | vulkan.h | 5103 typedef VkResult (GLAD_API_PTR *PFN_vkResetFences)(VkDevice device, uint32_t fenceCount, const VkFence * pFences); 5112 typedef VkResult (GLAD_API_PTR *PFN_vkWaitForFences)(VkDevice device, uint32_t fenceCount, const VkFence * pFences, VkBool32 waitAll, uint64_t timeout);
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/renderpass/ |
H A D | vktRenderPassTests.cpp | 466 void waitForFences (const DeviceInterface& vk, VkDevice device, deUint32 fenceCount, const VkFence* pFences, VkBool32 waitAll, deUint64 timeout) in waitForFences() argument 468 VK_CHECK(vk.waitForFences(device, fenceCount, pFences, waitAll, timeout)); in waitForFences()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/renderpass/ |
H A D | vktRenderPassTests.cpp | 456 void waitForFences (const DeviceInterface& vk, VkDevice device, deUint32 fenceCount, const VkFence* pFences, VkBool32 waitAll, deUint64 timeout) in waitForFences() argument 458 VK_CHECK(vk.waitForFences(device, fenceCount, pFences, waitAll, timeout)); in waitForFences()
|