Home
last modified time | relevance | path

Searched refs:query_types (Results 1 - 22 of 22) sorted by relevance

/third_party/mesa3d/src/gallium/auxiliary/hud/
H A Dhud_driver_query.c47 unsigned *query_types; member
105 bq->query_types); in hud_batch_query_update()
147 if (bq->query_types[i] == query_type) { in batch_query_add()
156 = REALLOC(bq->query_types, in batch_query_add()
161 bq->query_types = new_query_types; in batch_query_add()
165 bq->query_types[bq->num_query_types] = query_type; in batch_query_add()
191 FREE(bq->query_types); in hud_batch_query_cleanup()
/third_party/mesa3d/src/gallium/drivers/v3d/
H A Dv3d_query_perfcnt.c314 unsigned *query_types) in v3d_create_batch_query_perfcnt()
323 if (query_types[i] < PIPE_QUERY_DRIVER_SPECIFIC || in v3d_create_batch_query_perfcnt()
324 query_types[i] >= PIPE_QUERY_DRIVER_SPECIFIC + in v3d_create_batch_query_perfcnt()
342 perfmon->counters[i] = query_types[i] - PIPE_QUERY_DRIVER_SPECIFIC; in v3d_create_batch_query_perfcnt()
313 v3d_create_batch_query_perfcnt(struct v3d_context *v3d, unsigned num_queries, unsigned *query_types) v3d_create_batch_query_perfcnt() argument
H A Dv3d_query.c54 unsigned *query_types) in v3d_create_batch_query()
58 query_types); in v3d_create_batch_query()
53 v3d_create_batch_query(struct pipe_context *pctx, unsigned num_queries, unsigned *query_types) v3d_create_batch_query() argument
H A Dv3d_query.h46 unsigned *query_types);
/third_party/mesa3d/src/gallium/drivers/freedreno/a2xx/
H A Dfd2_query.c58 * batch_query API design. On perfcntr query tracks N query_types,
161 unsigned *query_types) in fd2_create_batch_query()
175 /* validate the requested query_types and ensure we don't try in fd2_create_batch_query()
176 * to request more query_types of a given group than we have in fd2_create_batch_query()
183 unsigned idx = query_types[i] - FD_QUERY_FIRST_PERFCNTR; in fd2_create_batch_query()
186 if ((query_types[i] < FD_QUERY_FIRST_PERFCNTR) || in fd2_create_batch_query()
188 mesa_loge("invalid batch query query_type: %u", query_types[i]); in fd2_create_batch_query()
160 fd2_create_batch_query(struct pipe_context *pctx, unsigned num_queries, unsigned *query_types) fd2_create_batch_query() argument
/third_party/mesa3d/src/gallium/drivers/vc4/
H A Dvc4_query.c119 unsigned *query_types) in vc4_create_batch_query()
129 if (query_types[i] >= PIPE_QUERY_DRIVER_SPECIFIC) in vc4_create_batch_query()
145 hwperfmon->events[i] = query_types[i] - in vc4_create_batch_query()
118 vc4_create_batch_query(struct pipe_context *pctx, unsigned num_queries, unsigned *query_types) vc4_create_batch_query() argument
/third_party/mesa3d/src/gallium/drivers/iris/
H A Diris_monitor.c181 unsigned *query_types) in iris_create_monitor_object()
196 int query_index = query_types[0] - PIPE_QUERY_DRIVER_SPECIFIC; in iris_create_monitor_object()
211 unsigned current_query = query_types[i]; in iris_create_monitor_object()
179 iris_create_monitor_object(struct iris_context *ice, unsigned num_queries, unsigned *query_types) iris_create_monitor_object() argument
H A Diris_monitor.h40 unsigned *query_types);
H A Diris_query.c460 unsigned *query_types) in iris_create_batch_query()
468 q->monitor = iris_create_monitor_object(ice, num_queries, query_types); in iris_create_batch_query()
458 iris_create_batch_query(struct pipe_context *ctx, unsigned num_queries, unsigned *query_types) iris_create_batch_query() argument
/third_party/mesa3d/src/gallium/drivers/freedreno/a5xx/
H A Dfd5_query.c252 * batch_query API design. On perfcntr query tracks N query_types,
369 unsigned *query_types) in fd5_create_batch_query()
383 /* validate the requested query_types and ensure we don't try in fd5_create_batch_query()
384 * to request more query_types of a given group than we have in fd5_create_batch_query()
391 unsigned idx = query_types[i] - FD_QUERY_FIRST_PERFCNTR; in fd5_create_batch_query()
394 if ((query_types[i] < FD_QUERY_FIRST_PERFCNTR) || in fd5_create_batch_query()
396 mesa_loge("invalid batch query query_type: %u", query_types[i]); in fd5_create_batch_query()
368 fd5_create_batch_query(struct pipe_context *pctx, unsigned num_queries, unsigned *query_types) fd5_create_batch_query() argument
/third_party/mesa3d/src/gallium/drivers/crocus/
H A Dcrocus_monitor.h53 unsigned *query_types);
H A Dcrocus_monitor.c327 unsigned *query_types) in crocus_create_monitor_object()
343 int query_index = query_types[0] - PIPE_QUERY_DRIVER_SPECIFIC; in crocus_create_monitor_object()
358 unsigned current_query = query_types[i]; in crocus_create_monitor_object()
325 crocus_create_monitor_object(struct crocus_context *ice, unsigned num_queries, unsigned *query_types) crocus_create_monitor_object() argument
H A Dcrocus_query.c490 unsigned *query_types) in crocus_create_batch_query()
498 q->monitor = crocus_create_monitor_object(ice, num_queries, query_types); in crocus_create_batch_query()
488 crocus_create_batch_query(struct pipe_context *ctx, unsigned num_queries, unsigned *query_types) crocus_create_batch_query() argument
/third_party/mesa3d/src/gallium/drivers/freedreno/a6xx/
H A Dfd6_query.c457 * batch_query API design. On perfcntr query tracks N query_types,
574 unsigned *query_types) in fd6_create_batch_query()
588 /* validate the requested query_types and ensure we don't try in fd6_create_batch_query()
589 * to request more query_types of a given group than we have in fd6_create_batch_query()
596 unsigned idx = query_types[i] - FD_QUERY_FIRST_PERFCNTR; in fd6_create_batch_query()
599 if ((query_types[i] < FD_QUERY_FIRST_PERFCNTR) || in fd6_create_batch_query()
601 mesa_loge("invalid batch query query_type: %u", query_types[i]); in fd6_create_batch_query()
573 fd6_create_batch_query(struct pipe_context *pctx, unsigned num_queries, unsigned *query_types) fd6_create_batch_query() argument
/third_party/mesa3d/src/gallium/drivers/r600/
H A Dr600_perfcounter.c302 unsigned *query_types) in r600_create_batch_query()
329 if (query_types[i] < R600_QUERY_FIRST_PERFCOUNTER) in r600_create_batch_query()
332 block = lookup_counter(pc, query_types[i] - R600_QUERY_FIRST_PERFCOUNTER, in r600_create_batch_query()
396 block = lookup_counter(pc, query_types[i] - R600_QUERY_FIRST_PERFCOUNTER, in r600_create_batch_query()
300 r600_create_batch_query(struct pipe_context *ctx, unsigned num_queries, unsigned *query_types) r600_create_batch_query() argument
H A Dr600_query.h296 unsigned *query_types);
/third_party/mesa3d/src/gallium/drivers/radeonsi/
H A Dsi_perfcounter.c515 unsigned *query_types) in si_create_batch_query()
540 if (query_types[i] < SI_QUERY_FIRST_PERFCOUNTER) in si_create_batch_query()
544 ac_lookup_counter(&pc->base, query_types[i] - SI_QUERY_FIRST_PERFCOUNTER, &base_gid, &sub_index); in si_create_batch_query()
599 ac_lookup_counter(&pc->base, query_types[i] - SI_QUERY_FIRST_PERFCOUNTER, &base_gid, &sub_index); in si_create_batch_query()
514 si_create_batch_query(struct pipe_context *ctx, unsigned num_queries, unsigned *query_types) si_create_batch_query() argument
H A Dsi_query.h292 unsigned *query_types);
/third_party/mesa3d/src/gallium/auxiliary/driver_ddebug/
H A Ddd_context.c75 unsigned *query_types) in dd_context_create_batch_query()
80 query = pipe->create_batch_query(pipe, num_queries, query_types); in dd_context_create_batch_query()
87 dd_query->type = query_types[0]; in dd_context_create_batch_query()
74 dd_context_create_batch_query(struct pipe_context *_pipe, unsigned num_queries, unsigned *query_types) dd_context_create_batch_query() argument
/third_party/mesa3d/src/gallium/include/pipe/
H A Dp_context.h230 * \param query_types array of \p num_queries query types
235 unsigned *query_types );
/third_party/vk-gl-cts/external/openglcts/modules/gl/
H A Dgl4cPipelineStatisticsQueryTests.cpp1609 const glw::GLenum query_types[] = { GL_GEOMETRY_SHADER_INVOCATIONS, GL_GEOMETRY_SHADER_PRIMITIVES_EMITTED_ARB, in iterate() local
1612 const unsigned int n_query_types = sizeof(query_types) / sizeof(query_types[0]); in iterate()
1616 glw::GLenum query_type = query_types[n_query_type]; in iterate()
/third_party/mesa3d/src/gallium/auxiliary/util/
H A Du_threaded_context.c816 unsigned *query_types) in tc_create_batch_query()
821 return pipe->create_batch_query(pipe, num_queries, query_types); in tc_create_batch_query()
815 tc_create_batch_query(struct pipe_context *_pipe, unsigned num_queries, unsigned *query_types) tc_create_batch_query() argument

Completed in 28 milliseconds