Searched refs:new_pool (Results 1 – 2 of 2) sorted by relevance
162 struct zink_query_pool *new_pool = CALLOC_STRUCT(zink_query_pool); in find_or_allocate_qp() local163 if (!new_pool) in find_or_allocate_qp()166 new_pool->vk_query_type = vk_query_type; in find_or_allocate_qp()167 new_pool->pipeline_stats = pipeline_stats; in find_or_allocate_qp()175 VkResult status = VKSCR(CreateQueryPool)(screen->dev, &pool_create, NULL, &new_pool->query_pool); in find_or_allocate_qp()178 FREE(new_pool); in find_or_allocate_qp()182 list_addtail(&new_pool->list, &ctx->query_pools); in find_or_allocate_qp()183 return new_pool; in find_or_allocate_qp()
313 let pool = ExecReadOnly::new_pool(&ro); in build()354 let pool = ExecReadOnly::new_pool(&ro); in build()1318 let pool = ExecReadOnly::new_pool(&self.ro); in clone()1453 fn new_pool(ro: &Arc<ExecReadOnly>) -> Box<Pool<ProgramCache>> { in new_pool() method