Lines Matching defs:squery
261 static void si_pc_query_destroy(struct si_context *sctx, struct si_query *squery)
263 struct si_query_pc *query = (struct si_query_pc *)squery;
294 static void si_pc_query_resume(struct si_context *sctx, struct si_query *squery)
299 struct si_query_pc *query = (struct si_query_pc *)squery;
331 static void si_pc_query_suspend(struct si_context *sctx, struct si_query *squery)
333 struct si_query_pc *query = (struct si_query_pc *)squery;
367 static bool si_pc_query_begin(struct si_context *ctx, struct si_query *squery)
369 struct si_query_pc *query = (struct si_query_pc *)squery;
376 si_pc_query_resume(ctx, squery);
381 static bool si_pc_query_end(struct si_context *ctx, struct si_query *squery)
383 struct si_query_pc *query = (struct si_query_pc *)squery;
385 si_pc_query_suspend(ctx, squery);
387 list_del(&squery->active_list);
388 ctx->num_cs_dw_queries_suspend -= squery->num_cs_dw_suspend;
409 static bool si_pc_query_get_result(struct si_context *sctx, struct si_query *squery, bool wait,
412 struct si_query_pc *query = (struct si_query_pc *)squery;
421 if (squery->b.flushed)