Lines Matching defs:pool
45 struct pvr_query_pool *pool;
59 pool = vk_object_alloc(&device->vk,
61 sizeof(*pool),
63 if (!pool)
66 pool->result_stride =
72 alloc_size = pool->result_stride * core_count;
79 &pool->result_buffer);
88 &pool->availability_buffer);
92 *pQueryPool = pvr_query_pool_to_handle(pool);
97 pvr_bo_free(device, pool->result_buffer);
100 vk_object_free(&device->vk, pAllocator, pool);
109 PVR_FROM_HANDLE(pvr_query_pool, pool, queryPool);
112 pvr_bo_free(device, pool->availability_buffer);
113 pvr_bo_free(device, pool->result_buffer);
115 vk_object_free(&device->vk, pAllocator, pool);