/third_party/skia/third_party/externals/swiftshader/src/Vulkan/ |
D | VkCommandPool.cpp | 43 …ommandBuffers(Device *device, VkCommandBufferLevel level, uint32_t commandBufferCount, VkCommandBu… in allocateCommandBuffers() argument 45 for(uint32_t i = 0; i < commandBufferCount; i++) in allocateCommandBuffers() 63 for(uint32_t j = 0; j < commandBufferCount; j++) in allocateCommandBuffers() 72 commandBuffers.insert(pCommandBuffers, pCommandBuffers + commandBufferCount); in allocateCommandBuffers() 77 void CommandPool::freeCommandBuffers(uint32_t commandBufferCount, const VkCommandBuffer *pCommandBu… in freeCommandBuffers() argument 79 for(uint32_t i = 0; i < commandBufferCount; i++) in freeCommandBuffers()
|
D | VkQueue.cpp | 43 totalSize += pSubmits[i].commandBufferCount * sizeof(VkCommandBuffer); in DeepCopySubmitInfo() 79 submits[i].commandBufferCount = pSubmits[i].commandBufferCount; in DeepCopySubmitInfo() 109 if(pSubmits[i].commandBufferCount > 0) in DeepCopySubmitInfo() 111 size_t size = pSubmits[i].commandBufferCount * sizeof(VkCommandBuffer); in DeepCopySubmitInfo() 234 for(uint32_t j = 0; j < submitInfo.commandBufferCount; j++) in submitQueue()
|
D | VkCommandPool.hpp | 34 …ommandBuffers(Device *device, VkCommandBufferLevel level, uint32_t commandBufferCount, VkCommandBu… 35 void freeCommandBuffers(uint32_t commandBufferCount, const VkCommandBuffer *pCommandBuffers);
|
D | VkQueue.hpp | 69 uint32_t commandBufferCount; member
|
/third_party/skia/third_party/externals/angle2/src/tests/test_utils/ |
D | VulkanHelper.cpp | 816 constexpr uint32_t commandBufferCount = std::extent<decltype(commandBuffers)>(); in releaseImageAndSignalSemaphore() local 822 /* .commandBufferCount = */ commandBufferCount, in releaseImageAndSignalSemaphore() 855 /* .commandBufferCount = */ commandBufferCount, in releaseImageAndSignalSemaphore() 876 constexpr uint32_t commandBufferCount = std::extent<decltype(commandBuffers)>(); in waitSemaphoreAndAcquireImage() local 882 /* .commandBufferCount = */ commandBufferCount, in waitSemaphoreAndAcquireImage() 921 /* .commandBufferCount = */ commandBufferCount, in waitSemaphoreAndAcquireImage() 990 constexpr uint32_t commandBufferCount = std::extent<decltype(commandBuffers)>(); in readPixels() local 996 /* .commandBufferCount = */ commandBufferCount, in readPixels() 1081 /* .commandBufferCount = */ commandBufferCount, in readPixels() 1096 vkFreeCommandBuffers(mDevice, mCommandPool, commandBufferCount, commandBuffers); in readPixels()
|
/third_party/mesa3d/src/virtio/venus-protocol/ |
D | vn_protocol_driver_queue.h | 35 size += vn_sizeof_uint32_t(&val->commandBufferCount); in vn_sizeof_VkDeviceGroupSubmitInfo_self() 37 size += vn_sizeof_array_size(val->commandBufferCount); in vn_sizeof_VkDeviceGroupSubmitInfo_self() 38 size += vn_sizeof_uint32_t_array(val->pCommandBufferDeviceMasks, val->commandBufferCount); in vn_sizeof_VkDeviceGroupSubmitInfo_self() 82 vn_encode_uint32_t(enc, &val->commandBufferCount); in vn_encode_VkDeviceGroupSubmitInfo_self() 84 vn_encode_array_size(enc, val->commandBufferCount); in vn_encode_VkDeviceGroupSubmitInfo_self() 85 vn_encode_uint32_t_array(enc, val->pCommandBufferDeviceMasks, val->commandBufferCount); in vn_encode_VkDeviceGroupSubmitInfo_self() 297 size += vn_sizeof_uint32_t(&val->commandBufferCount); in vn_sizeof_VkSubmitInfo_self() 299 size += vn_sizeof_array_size(val->commandBufferCount); in vn_sizeof_VkSubmitInfo_self() 300 for (uint32_t i = 0; i < val->commandBufferCount; i++) in vn_sizeof_VkSubmitInfo_self() 382 vn_encode_uint32_t(enc, &val->commandBufferCount); in vn_encode_VkSubmitInfo_self() [all …]
|
D | vn_protocol_driver_command_buffer.h | 30 size += vn_sizeof_uint32_t(&val->commandBufferCount); in vn_sizeof_VkCommandBufferAllocateInfo_self() 59 vn_encode_uint32_t(enc, &val->commandBufferCount); in vn_encode_VkCommandBufferAllocateInfo_self() 1258 cmd_size += vn_sizeof_array_size((pAllocateInfo ? pAllocateInfo->commandBufferCount : 0)); in vn_sizeof_vkAllocateCommandBuffers() 1259 for (uint32_t i = 0; i < (pAllocateInfo ? pAllocateInfo->commandBufferCount : 0); i++) in vn_sizeof_vkAllocateCommandBuffers() 1279 vn_encode_array_size(enc, (pAllocateInfo ? pAllocateInfo->commandBufferCount : 0)); in vn_encode_vkAllocateCommandBuffers() 1280 for (uint32_t i = 0; i < (pAllocateInfo ? pAllocateInfo->commandBufferCount : 0); i++) in vn_encode_vkAllocateCommandBuffers() 1297 cmd_size += vn_sizeof_array_size((pAllocateInfo ? pAllocateInfo->commandBufferCount : 0)); in vn_sizeof_vkAllocateCommandBuffers_reply() 1298 for (uint32_t i = 0; i < (pAllocateInfo ? pAllocateInfo->commandBufferCount : 0); i++) in vn_sizeof_vkAllocateCommandBuffers_reply() 1318 …_t iter_count = vn_decode_array_size(dec, (pAllocateInfo ? pAllocateInfo->commandBufferCount : 0)); in vn_decode_vkAllocateCommandBuffers_reply() 1329 …ommandBuffers(VkDevice device, VkCommandPool commandPool, uint32_t commandBufferCount, const VkCom… in vn_sizeof_vkFreeCommandBuffers() argument [all …]
|
/third_party/mesa3d/src/vulkan/util/ |
D | vk_synchronization2.c | 302 n_command_buffers += pSubmits[s].commandBufferCount; in vk_common_QueueSubmit() 337 for (uint32_t i = 0; i < pSubmits[s].commandBufferCount; i++) { in vk_common_QueueSubmit() 363 .commandBufferInfoCount = pSubmits[s].commandBufferCount, in vk_common_QueueSubmit() 388 n_command_buffers += pSubmits[s].commandBufferCount; in vk_common_QueueSubmit()
|
/third_party/skia/third_party/externals/swiftshader/tests/VulkanBenchmarks/ |
D | ClearImageBenchmarks.cpp | 59 commandBufferAllocateInfo.commandBufferCount = 1; in initialize() 113 submitInfo.commandBufferCount = 1; in clear()
|
/third_party/skia/third_party/externals/swiftshader/tests/VulkanWrapper/ |
D | Util.cpp | 45 allocInfo.commandBufferCount = 1; in beginSingleTimeCommands() 62 submitInfo.commandBufferCount = 1; in endSingleTimeCommands()
|
/third_party/mesa3d/src/gallium/frontends/lavapipe/ |
D | lvp_cmd_buffer.c | 88 for (i = 0; i < pAllocateInfo->commandBufferCount; i++) { in lvp_AllocateCommandBuffers() 117 sizeof(*pCommandBuffers) * pAllocateInfo->commandBufferCount); in lvp_AllocateCommandBuffers() 135 uint32_t commandBufferCount, in lvp_FreeCommandBuffers() argument 138 for (uint32_t i = 0; i < commandBufferCount; i++) { in lvp_FreeCommandBuffers()
|
/third_party/flutter/engine/flutter/vulkan/ |
D | vulkan_command_buffer.cc | 21 .commandBufferCount = 1, in VulkanCommandBuffer()
|
/third_party/mesa3d/src/vulkan/overlay-layer/ |
D | overlay.cpp | 535 cmd_buffer_info.commandBufferCount = 1; in get_overlay_draw() 1374 submit_info.commandBufferCount = 0; in render_swapchain_display() 1383 submit_info.commandBufferCount = 1; in render_swapchain_display() 1402 submit_info.commandBufferCount = 1; in render_swapchain_display() 2305 uint32_t commandBufferCount, in overlay_CmdExecuteCommands() argument 2313 for (uint32_t c = 0; c < commandBufferCount; c++) { in overlay_CmdExecuteCommands() 2321 device_data->vtable.CmdExecuteCommands(commandBuffer, commandBufferCount, pCommandBuffers); in overlay_CmdExecuteCommands() 2344 pAllocateInfo->commandBufferCount, in overlay_AllocateCommandBuffers() 2356 pAllocateInfo->commandBufferCount * 2, in overlay_AllocateCommandBuffers() 2363 for (uint32_t i = 0; i < pAllocateInfo->commandBufferCount; i++) { in overlay_AllocateCommandBuffers() [all …]
|
/third_party/flutter/skia/tools/gpu/vk/ |
D | VkTestContext.cpp | 57 allocateInfo.commandBufferCount = 1; in VkFenceSync() 99 submitInfo.commandBufferCount = 1; in insertFence()
|
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/ |
D | PersistentCommandPool.cpp | 94 commandBufferInfo.commandBufferCount = 1; in allocateCommandBuffer()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/ |
D | VulkanSecondaryCommandBuffer.cpp | 67 allocInfo.commandBufferCount = 1; in initialize()
|
D | PersistentCommandPool.cpp | 105 commandBufferInfo.commandBufferCount = 1; in allocateCommandBuffer()
|
/third_party/mesa3d/src/virtio/vulkan/ |
D | vn_command_buffer.c | 536 for (uint32_t i = 0; i < pAllocateInfo->commandBufferCount; i++) { in vn_AllocateCommandBuffers() 549 sizeof(*pCommandBuffers) * pAllocateInfo->commandBufferCount); in vn_AllocateCommandBuffers() 578 uint32_t commandBufferCount, in vn_FreeCommandBuffers() argument 586 commandBufferCount, pCommandBuffers); in vn_FreeCommandBuffers() 588 for (uint32_t i = 0; i < commandBufferCount; i++) { in vn_FreeCommandBuffers() 1734 uint32_t commandBufferCount, in vn_CmdExecuteCommands() argument 1742 commandBuffer, commandBufferCount, pCommandBuffers); in vn_CmdExecuteCommands() 1747 commandBufferCount, pCommandBuffers); in vn_CmdExecuteCommands()
|
/third_party/mesa3d/src/intel/nullhw-layer/ |
D | intel_nullhw.c | 124 .commandBufferCount = 1, in override_queue() 148 .commandBufferCount = 1, in override_queue()
|
/third_party/flutter/skia/third_party/externals/angle2/src/tests/perf_tests/ |
D | VulkanCommandBufferPerf.cpp | 294 submitInfo[0].commandBufferCount = numBuffers; in PrimaryCommandBufferBenchmarkHundredIndividual() 361 submitInfo[0].commandBufferCount = 1; in PrimaryCommandBufferBenchmarkOneWithOneHundred() 453 submitInfo[0].commandBufferCount = 1; in SecondaryCommandBufferBenchmark()
|
/third_party/skia/third_party/externals/angle2/src/tests/perf_tests/ |
D | VulkanCommandBufferPerf.cpp | 294 submitInfo[0].commandBufferCount = numBuffers; in PrimaryCommandBufferBenchmarkHundredIndividual() 361 submitInfo[0].commandBufferCount = 1; in PrimaryCommandBufferBenchmarkOneWithOneHundred() 453 submitInfo[0].commandBufferCount = 1; in SecondaryCommandBufferBenchmark()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/synchronization/ |
D | vktSynchronizationUtil.cpp | 395 deUint32 commandBufferCount; member 818 si.commandBufferCount = data.commandBufferCount; in queueSubmit() 848 if (data.commandBufferCount) in queueSubmit()
|
/third_party/gstreamer/gstplugins_bad/gst-libs/gst/vulkan/ |
D | gstvkcommandpool.c | 136 cmd_info.commandBufferCount = 1; in command_alloc()
|
/third_party/flutter/skia/third_party/externals/imgui/examples/example_sdl_vulkan/ |
D | main.cpp | 273 info.commandBufferCount = 1; in FrameRender() 392 end_info.commandBufferCount = 1; in main()
|
/third_party/flutter/skia/third_party/externals/dawn/src/dawn_native/vulkan/ |
D | DeviceVk.cpp | 297 submitInfo.commandBufferCount = 1; in SubmitPendingCommands() 478 allocateInfo.commandBufferCount = 1; in GetUnusedCommands()
|