/external/autotest/server/site_tests/cheets_CTS_P/ |
D | control.x86.CtsDeqpTestCases.dEQP-VK.query_pool | 8 NAME = 'cheets_CTS_P.x86.CtsDeqpTestCases.dEQP-VK.query_pool' 16 DOC = 'Run module CtsDeqpTestCases.dEQP-VK.query_pool of the Android Compatibility Test Suite (CTS)… 24 tag='x86.CtsDeqpTestCases.dEQP-VK.query_pool', 25 test_name='cheets_CTS_P.x86.CtsDeqpTestCases.dEQP-VK.query_pool', 26 …ude-filter', 'CtsDeqpTestCases', '--module', 'CtsDeqpTestCases', '--test', 'dEQP-VK.query_pool.*'],
|
D | control.arm.CtsDeqpTestCases.dEQP-VK.query_pool | 8 NAME = 'cheets_CTS_P.arm.CtsDeqpTestCases.dEQP-VK.query_pool' 16 DOC = 'Run module CtsDeqpTestCases.dEQP-VK.query_pool of the Android Compatibility Test Suite (CTS)… 24 tag='arm.CtsDeqpTestCases.dEQP-VK.query_pool', 25 test_name='cheets_CTS_P.arm.CtsDeqpTestCases.dEQP-VK.query_pool', 26 …ude-filter', 'CtsDeqpTestCases', '--module', 'CtsDeqpTestCases', '--test', 'dEQP-VK.query_pool.*'],
|
/external/mesa3d/src/gallium/drivers/zink/ |
D | zink_query.c | 19 VkQueryPool query_pool; member 123 VkResult status = vkCreateQueryPool(screen->dev, &pool_create, NULL, &query->query_pool); in zink_create_query() 136 vkDestroyQueryPool(screen->dev, query->query_pool, NULL); in zink_create_query() 142 vkCmdResetQueryPool(batch->cmdbuf, query->query_pool, 0, query->num_queries); in zink_create_query() 154 vkDestroyQueryPool(screen->dev, query->query_pool, NULL); in destroy_query() 232 VkResult status = vkGetQueryPoolResults(screen->dev, query->query_pool, in get_query_result() 316 vkCmdResetQueryPool(batch->cmdbuf, q->query_pool, 0, q->num_queries); in reset_pool() 335 …vkCmdWriteTimestamp(batch->cmdbuf, VK_PIPELINE_STAGE_TOP_OF_PIPE_BIT, q->query_pool, q->curr_query… in begin_query() 343 … q->xfb_query_pool ? q->xfb_query_pool : q->query_pool, in begin_query() 350 vkCmdBeginQuery(batch->cmdbuf, q->query_pool, q->curr_query, flags); in begin_query() [all …]
|
/external/vulkan-validation-layers/tests/ |
D | vklayertests_others.cpp | 1108 VkQueryPool query_pool; in TEST_F() local 1113 VkResult result = vkCreateQueryPool(m_device->device(), &qpci, nullptr, &query_pool); in TEST_F() 1117 vkCmdResetQueryPool(m_commandBuffer->handle(), query_pool, 0, 1); in TEST_F() 1123 vkDestroyQueryPool(m_device->device(), query_pool, NULL); in TEST_F() 1468 VkQueryPool query_pool; in TEST_F() local 1471 vkCreateQueryPool(local_device, &qpci, nullptr, &query_pool); in TEST_F() 1495 VkQueryPool query_pool; in TEST_F() local 1500 vkCreateQueryPool(m_device->device(), &query_pool_create_info, nullptr, &query_pool); in TEST_F() 1502 vkCmdResetQueryPool(m_commandBuffer->handle(), query_pool, 0 /*startQuery*/, 1 /*queryCount*/); in TEST_F() 1503 vkCmdBeginQuery(m_commandBuffer->handle(), query_pool, 0, 0); in TEST_F() [all …]
|
D | vkpositivelayertests.cpp | 766 VkQueryPool query_pool; in TEST_F() local 775 VkResult res = vkCreateQueryPool(m_device->handle(), &query_pool_info, NULL, &query_pool); in TEST_F() 784 vkCmdResetQueryPool(m_commandBuffer->handle(), query_pool, 0, 2); in TEST_F() 786 vkCmdBeginQuery(m_commandBuffer->handle(), query_pool, 0, 0); in TEST_F() 787 vkCmdEndQuery(m_commandBuffer->handle(), query_pool, 0); in TEST_F() 789 vkCmdBeginQuery(m_commandBuffer->handle(), query_pool, 1, 0); in TEST_F() 792 vkCmdEndQuery(m_commandBuffer->handle(), query_pool, 1); in TEST_F() 793 …vkCmdCopyQueryPoolResults(m_commandBuffer->handle(), query_pool, 0, 2, buffer.handle(), 0, sizeof(… in TEST_F() 805 …res = vkGetQueryPoolResults(m_device->handle(), query_pool, 0, 2, sizeof(samples_passed), samples_… in TEST_F() 809 vkDestroyQueryPool(m_device->handle(), query_pool, NULL); in TEST_F() [all …]
|
/external/skqp/src/compute/hs/vk/bench/ |
D | main.c | 696 VkQueryPool query_pool; in main() local 701 &query_pool)); in main() 955 vkCmdWriteTimestamp(cb,VK_PIPELINE_STAGE_TOP_OF_PIPE_BIT,query_pool,0); in main() 977 vkCmdWriteTimestamp(cb,VK_PIPELINE_STAGE_COMPUTE_SHADER_BIT,query_pool,1); in main() 1011 vk(GetQueryPoolResults(device,query_pool, in main() 1180 vkDestroyQueryPool(device,query_pool,NULL); in main()
|
/external/deqp/external/vulkancts/modules/vulkan/ |
D | CMakeLists.txt | 13 add_subdirectory(query_pool) 59 query_pool
|
/external/mesa3d/src/gallium/frontends/lavapipe/ |
D | lvp_cmd_buffer.c | 1260 LVP_FROM_HANDLE(lvp_query_pool, query_pool, queryPool); in lvp_CmdResetQueryPool() 1267 cmd->u.query.pool = query_pool; in lvp_CmdResetQueryPool() 1282 LVP_FROM_HANDLE(lvp_query_pool, query_pool, queryPool); in lvp_CmdBeginQueryIndexedEXT() 1289 cmd->u.query.pool = query_pool; in lvp_CmdBeginQueryIndexedEXT() 1313 LVP_FROM_HANDLE(lvp_query_pool, query_pool, queryPool); in lvp_CmdEndQueryIndexedEXT() 1320 cmd->u.query.pool = query_pool; in lvp_CmdEndQueryIndexedEXT() 1342 LVP_FROM_HANDLE(lvp_query_pool, query_pool, queryPool); in lvp_CmdWriteTimestamp() 1349 cmd->u.query.pool = query_pool; in lvp_CmdWriteTimestamp() 1367 LVP_FROM_HANDLE(lvp_query_pool, query_pool, queryPool); in lvp_CmdCopyQueryPoolResults() 1375 cmd->u.copy_query_pool_results.pool = query_pool; in lvp_CmdCopyQueryPoolResults()
|
/external/mesa3d/.gitlab-ci/ |
D | deqp-radv-polaris10-skips.txt | 21 dEQP-VK.query_pool.*
|
/external/mesa3d/src/intel/vulkan/ |
D | anv_batch_chain.c | 1756 struct anv_query_pool *query_pool = submit->cmd_buffer->perf_query_pool; in anv_queue_execbuf_locked() local 1757 struct anv_bo *pass_batch_bo = query_pool->bo; in anv_queue_execbuf_locked() 1759 khr_perf_query_preamble_offset(query_pool, in anv_queue_execbuf_locked() 1811 struct anv_query_pool *query_pool = submit->cmd_buffer->perf_query_pool; in anv_queue_execbuf_locked() local 1812 assert(submit->perf_query_pass < query_pool->n_passes); in anv_queue_execbuf_locked() 1814 query_pool->pass_query[submit->perf_query_pass]; in anv_queue_execbuf_locked() 1831 struct anv_bo *pass_batch_bo = query_pool->bo; in anv_queue_execbuf_locked() 1841 .batch_start_offset = khr_perf_query_preamble_offset(query_pool, in anv_queue_execbuf_locked()
|
/external/deqp/android/cts/master/ |
D | vk-incremental-deqp.txt | 289 dEQP-VK.query_pool.statistics_query.compute_shader_invocations.32bits_primary 290 dEQP-VK.query_pool.statistics_query.compute_shader_invocations.32bits_secondary 291 dEQP-VK.query_pool.statistics_query.compute_shader_invocations.32bits_secondary_inherited 292 dEQP-VK.query_pool.statistics_query.compute_shader_invocations.64bits_primary 293 dEQP-VK.query_pool.statistics_query.compute_shader_invocations.64bits_secondary 294 dEQP-VK.query_pool.statistics_query.compute_shader_invocations.64bits_secondary_inherited
|
/external/deqp/android/cts/master/src/ |
D | vk-incremental-deqp.txt | 324 dEQP-VK.query_pool.statistics_query.compute_shader_invocations.32bits_primary 325 dEQP-VK.query_pool.statistics_query.compute_shader_invocations.32bits_secondary 326 dEQP-VK.query_pool.statistics_query.compute_shader_invocations.32bits_secondary_inherited 327 dEQP-VK.query_pool.statistics_query.compute_shader_invocations.64bits_primary 328 dEQP-VK.query_pool.statistics_query.compute_shader_invocations.64bits_secondary 329 dEQP-VK.query_pool.statistics_query.compute_shader_invocations.64bits_secondary_inherited
|
/external/deqp/ |
D | AndroidGen.bp | 285 "external/vulkancts/modules/vulkan/query_pool/vktQueryPoolConcurrentTests.cpp", 286 "external/vulkancts/modules/vulkan/query_pool/vktQueryPoolOcclusionTests.cpp", 287 "external/vulkancts/modules/vulkan/query_pool/vktQueryPoolPerformanceTests.cpp", 288 "external/vulkancts/modules/vulkan/query_pool/vktQueryPoolStatisticsTests.cpp", 289 "external/vulkancts/modules/vulkan/query_pool/vktQueryPoolTests.cpp", 1240 "external/vulkancts/modules/vulkan/query_pool",
|
/external/vulkan-validation-layers/layers/ |
D | core_validation.h | 331 …UERY_POOL_STATE* GetQueryPoolState(VkQueryPool query_pool) const { return Get<QUERY_POOL_STATE>(qu… 332 …QUERY_POOL_STATE* GetQueryPoolState(VkQueryPool query_pool) { return Get<QUERY_POOL_STATE>(query_p…
|
/external/mesa3d/src/broadcom/vulkan/ |
D | v3dv_cmd_buffer.c | 5039 V3DV_FROM_HANDLE(v3dv_query_pool, query_pool, queryPool); in v3dv_CmdWriteTimestamp() 5053 job->cpu.query_timestamp.pool = query_pool; in v3dv_CmdWriteTimestamp()
|