Home
last modified time | relevance | path

Searched refs:query_types (Results 1 – 16 of 16) sorted by relevance

/external/mesa3d/src/gallium/auxiliary/hud/
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()
/external/mesa3d/src/gallium/drivers/freedreno/a2xx/
Dfd2_query.c162 unsigned num_queries, unsigned *query_types) in fd2_create_batch_query() argument
184 unsigned idx = query_types[i] - FD_QUERY_FIRST_PERFCNTR; in fd2_create_batch_query()
187 if ((query_types[i] < FD_QUERY_FIRST_PERFCNTR) || in fd2_create_batch_query()
189 debug_printf("invalid batch query query_type: %u\n", query_types[i]); in fd2_create_batch_query()
/external/mesa3d/src/gallium/drivers/vc4/
Dvc4_query.c119 unsigned *query_types) in vc4_create_batch_query() argument
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()
/external/mesa3d/src/gallium/drivers/freedreno/a5xx/
Dfd5_query.c374 unsigned num_queries, unsigned *query_types) in fd5_create_batch_query() argument
396 unsigned idx = query_types[i] - FD_QUERY_FIRST_PERFCNTR; in fd5_create_batch_query()
399 if ((query_types[i] < FD_QUERY_FIRST_PERFCNTR) || in fd5_create_batch_query()
401 debug_printf("invalid batch query query_type: %u\n", query_types[i]); in fd5_create_batch_query()
/external/mesa3d/src/gallium/drivers/iris/
Diris_monitor.c166 unsigned *query_types) in iris_create_monitor_object() argument
181 int query_index = query_types[0] - PIPE_QUERY_DRIVER_SPECIFIC; in iris_create_monitor_object()
196 unsigned current_query = query_types[i]; in iris_create_monitor_object()
Diris_monitor.h40 unsigned *query_types);
Diris_query.c458 unsigned *query_types) in iris_create_batch_query() argument
466 q->monitor = iris_create_monitor_object(ice, num_queries, query_types); in iris_create_batch_query()
/external/mesa3d/src/gallium/drivers/freedreno/a6xx/
Dfd6_query.c567 unsigned num_queries, unsigned *query_types) in fd6_create_batch_query() argument
589 unsigned idx = query_types[i] - FD_QUERY_FIRST_PERFCNTR; in fd6_create_batch_query()
592 if ((query_types[i] < FD_QUERY_FIRST_PERFCNTR) || in fd6_create_batch_query()
594 debug_printf("invalid batch query query_type: %u\n", query_types[i]); in fd6_create_batch_query()
/external/mesa3d/src/gallium/drivers/r600/
Dr600_perfcounter.c302 unsigned *query_types) in r600_create_batch_query() argument
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()
Dr600_query.h295 unsigned *query_types);
/external/mesa3d/src/gallium/drivers/radeonsi/
Dsi_query.h245 unsigned *query_types);
Dsi_perfcounter.c1153 unsigned *query_types) in si_create_batch_query() argument
1178 if (query_types[i] < SI_QUERY_FIRST_PERFCOUNTER) in si_create_batch_query()
1182 lookup_counter(pc, query_types[i] - SI_QUERY_FIRST_PERFCOUNTER, &base_gid, &sub_index); in si_create_batch_query()
1237 lookup_counter(pc, query_types[i] - SI_QUERY_FIRST_PERFCOUNTER, &base_gid, &sub_index); in si_create_batch_query()
/external/mesa3d/src/gallium/auxiliary/driver_ddebug/
Ddd_context.c75 unsigned *query_types) in dd_context_create_batch_query() argument
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()
/external/mesa3d/src/gallium/include/pipe/
Dp_context.h185 unsigned *query_types );
/external/deqp/external/openglcts/modules/gl/
Dgl4cPipelineStatisticsQueryTests.cpp1605 …const glw::GLenum query_types[] = { GL_GEOMETRY_SHADER_INVOCATIONS, GL_GEOMETRY_SHADER_PRIMITIVES_… in iterate() local
1608 const unsigned int n_query_types = sizeof(query_types) / sizeof(query_types[0]); in iterate()
1612 glw::GLenum query_type = query_types[n_query_type]; in iterate()
/external/mesa3d/src/gallium/auxiliary/util/
Du_threaded_context.c411 unsigned *query_types) in tc_create_batch_query() argument
416 return pipe->create_batch_query(pipe, num_queries, query_types); in tc_create_batch_query()