Searched refs:query_type (Results 1 - 25 of 157) sorted by relevance

1234567

/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/freedreno/
H A Dfreedreno_query_acc.h60 unsigned query_type; member in struct:fd_acc_sample_provider
100 struct fd_query * fd_acc_create_query(struct fd_context *ctx, unsigned query_type);
101 struct fd_query * fd_acc_create_query2(struct fd_context *ctx, unsigned query_type,
H A Dfreedreno_perfcntr.h58 enum pipe_driver_query_type query_type; member in struct:fd_perfcntr_countable
H A Dfreedreno_query_sw.h51 unsigned query_type);
H A Dfreedreno_query.h87 /* maps query_type to sample provider idx: */
89 int pidx(unsigned query_type) argument
91 switch (query_type) {
H A Dfreedreno_query_hw.h49 * queries with the same query_type. So we cache per sample provider
72 unsigned query_type; member in struct:fd_hw_sample_provider
139 struct fd_query * fd_hw_create_query(struct fd_context *ctx, unsigned query_type);
H A Dfreedreno_query_acc.c175 fd_acc_create_query2(struct fd_context *ctx, unsigned query_type, argument
185 DBG("%p: query_type=%u", aq, query_type);
194 q->type = query_type;
200 fd_acc_create_query(struct fd_context *ctx, unsigned query_type) argument
202 int idx = pidx(query_type);
207 return fd_acc_create_query2(ctx, query_type,
235 int idx = pidx(provider->query_type);
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/etnaviv/
H A Detnaviv_query_acc.h37 bool (*supports)(unsigned query_type);
38 struct etna_acc_query * (*allocate)(struct etna_context *ctx, unsigned query_type);
65 etna_acc_create_query(struct etna_context *ctx, unsigned query_type);
H A Detnaviv_query_sw.h48 etna_sw_create_query(struct etna_context *ctx, unsigned query_type);
H A Detnaviv_query_acc_occlusion.c47 occlusion_supports(unsigned query_type) argument
49 switch (query_type) {
62 occlusion_allocate(struct etna_context *ctx, ASSERTED unsigned query_type) argument
H A Detnaviv_query_sw.c94 etna_sw_create_query(struct etna_context *ctx, unsigned query_type) argument
99 switch (query_type) {
114 q->type = query_type;
H A Detnaviv_query_acc_perfmon.c96 perfmon_supports(unsigned query_type) argument
98 return !!etna_pm_query_config(query_type);
102 perfmon_allocate(struct etna_context *ctx, unsigned query_type) argument
107 cfg = etna_pm_query_config(query_type);
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/freedreno/
H A Dfreedreno_query_acc.h58 unsigned query_type; member in struct:fd_acc_sample_provider
102 unsigned query_type, unsigned index);
104 fd_acc_create_query2(struct fd_context *ctx, unsigned query_type,
H A Dfreedreno_query_sw.h50 struct fd_query *fd_sw_create_query(struct fd_context *ctx, unsigned query_type,
H A Dfreedreno_query.c41 fd_create_query(struct pipe_context *pctx, unsigned query_type, unsigned index) argument
47 q = ctx->create_query(ctx, query_type, index);
49 q = fd_sw_create_query(ctx, query_type, index);
109 .name = _name, .query_type = _query_type, \
186 query_type(enum fd_perfcntr_type type) function in typeref:enum:pipe_driver_query_type
242 info->query_type = FD_QUERY_FIRST_PERFCNTR + idx;
243 info->type = query_type(c->query_type);
H A Dfreedreno_query.h105 /* maps query_type to sample provider idx: */
107 pidx(unsigned query_type) argument
109 switch (query_type) {
H A Dfreedreno_query_acc.c189 fd_acc_create_query2(struct fd_context *ctx, unsigned query_type, argument
200 DBG("%p: query_type=%u", aq, query_type);
209 q->type = query_type;
216 fd_acc_create_query(struct fd_context *ctx, unsigned query_type, unsigned index) argument
218 int idx = pidx(query_type);
223 return fd_acc_create_query2(ctx, query_type, index,
259 int idx = pidx(provider->query_type);
/xsrc/external/mit/MesaLib.old/dist/src/mesa/state_tracker/
H A Dst_cb_perfmon.h56 unsigned query_type; member in struct:st_perf_monitor_counter
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/etnaviv/
H A Detnaviv_query_sw.h48 etna_sw_create_query(struct etna_context *ctx, unsigned query_type);
H A Detnaviv_query_sw.c96 etna_sw_create_query(struct etna_context *ctx, unsigned query_type) argument
101 switch (query_type) {
116 q->type = query_type;
H A Detnaviv_query.c38 etna_create_query(struct pipe_context *pctx, unsigned query_type, argument
44 q = etna_sw_create_query(ctx, query_type);
46 q = etna_hw_create_query(ctx, query_type);
48 q = etna_pm_create_query(ctx, query_type);
/xsrc/external/mit/MesaLib/dist/src/mesa/state_tracker/
H A Dst_cb_perfmon.h56 unsigned query_type; member in struct:st_perf_monitor_counter
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/v3d/
H A Dv3d_query.h44 struct pipe_query *v3d_create_query_pipe(struct v3d_context *v3d, unsigned query_type, unsigned index);
/xsrc/external/mit/MesaLib/dist/src/freedreno/perfcntrs/
H A Dfreedreno_perfcntr.h87 enum fd_perfcntr_type query_type; member in struct:fd_perfcntr_countable
114 .query_type = FD_PERFCNTR_TYPE_##_query_type, \
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/r300/
H A Dr300_query.c33 unsigned query_type,
40 if (query_type != PIPE_QUERY_OCCLUSION_COUNTER &&
41 query_type != PIPE_QUERY_OCCLUSION_PREDICATE &&
42 query_type != PIPE_QUERY_OCCLUSION_PREDICATE_CONSERVATIVE &&
43 query_type != PIPE_QUERY_GPU_FINISHED) {
51 q->type = query_type;
53 if (query_type == PIPE_QUERY_GPU_FINISHED) {
32 r300_create_query(struct pipe_context * pipe,unsigned query_type,unsigned index) argument
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/r300/
H A Dr300_query.c33 unsigned query_type,
40 if (query_type != PIPE_QUERY_OCCLUSION_COUNTER &&
41 query_type != PIPE_QUERY_OCCLUSION_PREDICATE &&
42 query_type != PIPE_QUERY_OCCLUSION_PREDICATE_CONSERVATIVE &&
43 query_type != PIPE_QUERY_GPU_FINISHED) {
51 q->type = query_type;
53 if (query_type == PIPE_QUERY_GPU_FINISHED) {
32 r300_create_query(struct pipe_context * pipe,unsigned query_type,unsigned index) argument

Completed in 20 milliseconds

1234567