Home
last modified time | relevance | path

Searched refs:waitAll (Results 1 - 25 of 27) sorted by relevance

12

/third_party/mesa3d/src/virtio/venus-protocol/
H A Dvn_protocol_driver_fence.h399 static inline size_t vn_sizeof_vkWaitForFences(VkDevice device, uint32_t fenceCount, const VkFence* pFences, VkBool32 waitAll, uint64_t timeout) in vn_sizeof_vkWaitForFences() argument
414 cmd_size += vn_sizeof_VkBool32(&waitAll); in vn_sizeof_vkWaitForFences()
420 static inline void vn_encode_vkWaitForFences(struct vn_cs_encoder *enc, VkCommandFlagsEXT cmd_flags, VkDevice device, uint32_t fenceCount, const VkFence* pFences, VkBool32 waitAll, uint64_t timeout) in vn_encode_vkWaitForFences() argument
436 vn_encode_VkBool32(enc, &waitAll); in vn_encode_vkWaitForFences()
440 static inline size_t vn_sizeof_vkWaitForFences_reply(VkDevice device, uint32_t fenceCount, const VkFence* pFences, VkBool32 waitAll, uint64_t timeout) in vn_sizeof_vkWaitForFences_reply() argument
450 /* skip waitAll */ in vn_sizeof_vkWaitForFences_reply()
456 static inline VkResult vn_decode_vkWaitForFences_reply(struct vn_cs_decoder *dec, VkDevice device, uint32_t fenceCount, const VkFence* pFences, VkBool32 waitAll, uint64_t timeout) in vn_decode_vkWaitForFences_reply() argument
467 /* skip waitAll */ in vn_decode_vkWaitForFences_reply()
557 static inline void 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) in vn_submit_vkWaitForFences() argument
561 size_t cmd_size = vn_sizeof_vkWaitForFences(device, fenceCount, pFences, waitAll, timeou in vn_submit_vkWaitForFences()
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 Dvk_fence.c252 VkBool32 waitAll, in vk_common_WaitForFences()
276 if (!waitAll) in vk_common_WaitForFences()
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 DVkDevice.cpp228 VkResult Device::waitForFences(uint32_t fenceCount, const VkFence *pFences, VkBool32 waitAll, uint64_t timeout) in waitForFences() argument
233 if(waitAll != VK_FALSE) // All fences must be signaled in waitForFences()
H A DVkDevice.hpp61 VkResult waitForFences(uint32_t fenceCount, const VkFence *pFences, VkBool32 waitAll, uint64_t timeout);
H A DlibVulkan.cpp1404 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 Dtu_kgsl.c639 VkBool32 waitAll, in tu_WaitForFences()
643 struct tu_syncobj s = sync_merge((const VkSemaphore*) pFences, count, waitAll, false); in tu_WaitForFences()
636 tu_WaitForFences(VkDevice _device, uint32_t count, const VkFence *pFences, VkBool32 waitAll, uint64_t timeout) tu_WaitForFences() argument
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/synchronization/
H A DvktSynchronizationTimelineSemaphoreTests.cpp164 WaitTestInstance (Context& context, SynchronizationType type, bool waitAll, bool signalFromDevice) in WaitTestInstance() argument
167 , m_waitAll (waitAll) in WaitTestInstance()
254 WaitTestCase (tcu::TestContext& testCtx, const std::string& name, SynchronizationType type, bool waitAll, bool signalFromDevice) in WaitTestCase() argument
257 , m_waitAll (waitAll) in WaitTestCase()
750 bool waitAll; in init() member
761 addChild(new WaitTestCase(m_testCtx, waitCases[caseIdx].name, m_type, waitCases[caseIdx].waitAll, waitCases[caseIdx].signalFromDevice)); in init()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/synchronization/
H A DvktSynchronizationTimelineSemaphoreTests.cpp165 WaitTestInstance (Context& context, SynchronizationType type, bool waitAll, bool signalFromDevice) in WaitTestInstance() argument
168 , m_waitAll (waitAll) in WaitTestInstance()
255 WaitTestCase (tcu::TestContext& testCtx, const std::string& name, SynchronizationType type, bool waitAll, bool signalFromDevice) in WaitTestCase() argument
258 , m_waitAll (waitAll) in WaitTestCase()
745 bool waitAll; in init() member
756 addChild(new WaitTestCase(m_testCtx, waitCases[caseIdx].name, m_type, waitCases[caseIdx].waitAll, waitCases[caseIdx].signalFromDevice)); in init()
/third_party/mesa3d/src/virtio/vulkan/
H A Dvn_queue.c810 VkBool32 waitAll, in vn_WaitForFences()
820 if (fenceCount > 1 && waitAll) { 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 Dtrampoline.c1369 VkBool32 waitAll, uint64_t timeout) { in vkWaitForFences()
1377 return disp->WaitForFences(device, fenceCount, pFences, waitAll, timeout); in vkWaitForFences()
1368 vkWaitForFences(VkDevice device, uint32_t fenceCount, const VkFence *pFences, VkBool32 waitAll, uint64_t timeout) vkWaitForFences() argument
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/renderpass/
H A DvktRenderPassTests.cpp466 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 DvktRenderPassTests.cpp456 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()
/third_party/vk-gl-cts/external/vulkancts/scripts/src/
H A Dvulkan_sc_core.h2654 typedef VkResult (VKAPI_PTR *PFN_vkWaitForFences)(VkDevice device, uint32_t fenceCount, const VkFence* pFences, VkBool32 waitAll, uint64_t timeout);
2927 VkBool32 waitAll,
/third_party/skia/third_party/externals/swiftshader/include/vulkan/
H A Dvulkan.hpp1699 VkBool32 waitAll,
1702 return ::vkWaitForFences( device, fenceCount, pFences, waitAll, timeout );
H A Dvulkan_raii.hpp2909 VULKAN_HPP_NAMESPACE::Bool32 waitAll,
9610 VULKAN_HPP_NAMESPACE::Bool32 waitAll, in waitForFences()
9617 static_cast<VkBool32>( waitAll ), in waitForFences()
9609 waitForFences( ArrayProxy<const VULKAN_HPP_NAMESPACE::Fence> const & fences, VULKAN_HPP_NAMESPACE::Bool32 waitAll, uint64_t timeout ) const waitForFences() argument
H A Dvulkan_core.h3550 typedef VkResult (VKAPI_PTR *PFN_vkWaitForFences)(VkDevice device, uint32_t fenceCount, const VkFence* pFences, VkBool32 waitAll, uint64_t timeout);
3857 VkBool32 waitAll,
H A Dvulkan_handles.hpp7697 VULKAN_HPP_NAMESPACE::Bool32 waitAll,
7703 VULKAN_HPP_NAMESPACE::Bool32 waitAll,
H A Dvulkan_funcs.hpp1532 VULKAN_HPP_NAMESPACE::Bool32 waitAll,
1538 m_device, fenceCount, reinterpret_cast<const VkFence *>( pFences ), static_cast<VkBool32>( waitAll ), timeout ) );
1545 VULKAN_HPP_NAMESPACE::Bool32 waitAll, in waitForFences()
1553 static_cast<VkBool32>( waitAll ), in waitForFences()
1544 waitForFences( ArrayProxy<const VULKAN_HPP_NAMESPACE::Fence> const & fences, VULKAN_HPP_NAMESPACE::Bool32 waitAll, uint64_t timeout, Dispatch const & d ) const waitForFences() argument
[all...]
/third_party/skia/include/third_party/vulkan/vulkan/
H A Dvulkan_core.h3457 typedef VkResult (VKAPI_PTR *PFN_vkWaitForFences)(VkDevice device, uint32_t fenceCount, const VkFence* pFences, VkBool32 waitAll, uint64_t timeout);
3764 VkBool32 waitAll,
/third_party/mesa3d/include/vulkan/
H A Dvulkan_core.h3814 typedef VkResult (VKAPI_PTR *PFN_vkWaitForFences)(VkDevice device, uint32_t fenceCount, const VkFence* pFences, VkBool32 waitAll, uint64_t timeout);
4121 VkBool32 waitAll,
/third_party/skia/third_party/externals/dawn/third_party/khronos/vulkan/
H A Dvulkan_core.h3599 typedef VkResult (VKAPI_PTR *PFN_vkWaitForFences)(VkDevice device, uint32_t fenceCount, const VkFence* pFences, VkBool32 waitAll, uint64_t timeout);
3906 VkBool32 waitAll,
/third_party/vulkan-headers/include/vulkan/
H A Dvulkan.hpp1258 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 Dvulkan_funcs.hpp1501 VULKAN_HPP_NAMESPACE::Bool32 waitAll,
1507 d.vkWaitForFences( m_device, fenceCount, reinterpret_cast<const VkFence *>( pFences ), static_cast<VkBool32>( waitAll ), timeout ) );
1514 VULKAN_HPP_NAMESPACE::Bool32 waitAll, in waitForFences()
1521 d.vkWaitForFences( m_device, fences.size(), reinterpret_cast<const VkFence *>( fences.data() ), static_cast<VkBool32>( waitAll ), timeout ) ); in waitForFences()
1513 waitForFences( VULKAN_HPP_NAMESPACE::ArrayProxy<const VULKAN_HPP_NAMESPACE::Fence> const & fences, VULKAN_HPP_NAMESPACE::Bool32 waitAll, uint64_t timeout, Dispatch const & d ) const waitForFences() argument
[all...]
H A Dvulkan_core.h3964 typedef VkResult (VKAPI_PTR *PFN_vkWaitForFences)(VkDevice device, uint32_t fenceCount, const VkFence* pFences, VkBool32 waitAll, uint64_t timeout);
4271 VkBool32 waitAll,
/third_party/glfw/deps/glad/
H A Dvulkan.h5112 typedef VkResult (GLAD_API_PTR *PFN_vkWaitForFences)(VkDevice device, uint32_t fenceCount, const VkFence * pFences, VkBool32 waitAll, uint64_t timeout);

Completed in 487 milliseconds

12