Searched refs:fd_query (Results 1 – 9 of 9) sorted by relevance
/external/mesa3d/src/gallium/drivers/freedreno/ |
D | freedreno_query.h | 35 struct fd_query; 39 struct fd_query *q); 40 boolean (*begin_query)(struct fd_context *ctx, struct fd_query *q); 41 void (*end_query)(struct fd_context *ctx, struct fd_query *q); 43 struct fd_query *q, boolean wait, 47 struct fd_query { struct 53 static inline struct fd_query * argument 54 fd_query(struct pipe_query *pq) in fd_query() function 56 return (struct fd_query *)pq; in fd_query()
|
D | freedreno_query.c | 46 struct fd_query *q; in fd_create_query() 58 struct fd_query *q = fd_query(pq); in fd_destroy_query() 65 struct fd_query *q = fd_query(pq); in fd_begin_query() 80 struct fd_query *q = fd_query(pq); in fd_end_query() 101 struct fd_query *q = fd_query(pq); in fd_get_query_result()
|
D | freedreno_query_sw.c | 46 fd_sw_destroy_query(struct fd_context *ctx, struct fd_query *q) in fd_sw_destroy_query() 81 is_rate_query(struct fd_query *q) in is_rate_query() 98 fd_sw_begin_query(struct fd_context *ctx, struct fd_query *q) in fd_sw_begin_query() 108 fd_sw_end_query(struct fd_context *ctx, struct fd_query *q) in fd_sw_end_query() 117 fd_sw_get_query_result(struct fd_context *ctx, struct fd_query *q, in fd_sw_get_query_result() 140 struct fd_query * 144 struct fd_query *q; in fd_sw_create_query()
|
D | freedreno_query_acc.c | 43 fd_acc_destroy_query(struct fd_context *ctx, struct fd_query *q) in fd_acc_destroy_query() 77 fd_acc_begin_query(struct fd_context *ctx, struct fd_query *q) in fd_acc_begin_query() 100 fd_acc_end_query(struct fd_context *ctx, struct fd_query *q) in fd_acc_end_query() 116 fd_acc_get_query_result(struct fd_context *ctx, struct fd_query *q, in fd_acc_get_query_result() 173 struct fd_query * 177 struct fd_query *q; in fd_acc_create_query()
|
D | freedreno_query_sw.h | 41 struct fd_query base; 47 fd_sw_query(struct fd_query *q) in fd_sw_query() 52 struct fd_query * fd_sw_create_query(struct fd_context *ctx,
|
D | freedreno_query_acc.h | 75 struct fd_query base; 88 fd_acc_query(struct fd_query *q) in fd_acc_query() 93 struct fd_query * fd_acc_create_query(struct fd_context *ctx, unsigned query_type);
|
D | freedreno_query_hw.h | 118 struct fd_query base; 136 fd_hw_query(struct fd_query *q) in fd_hw_query() 141 struct fd_query * fd_hw_create_query(struct fd_context *ctx, unsigned query_type);
|
D | freedreno_query_hw.c | 125 fd_hw_destroy_query(struct fd_context *ctx, struct fd_query *q) in fd_hw_destroy_query() 138 fd_hw_begin_query(struct fd_context *ctx, struct fd_query *q) in fd_hw_begin_query() 159 fd_hw_end_query(struct fd_context *ctx, struct fd_query *q) in fd_hw_end_query() 180 fd_hw_get_query_result(struct fd_context *ctx, struct fd_query *q, in fd_hw_get_query_result() 270 struct fd_query * 274 struct fd_query *q; in fd_hw_create_query()
|
D | freedreno_context.h | 326 struct fd_query * (*create_query)(struct fd_context *ctx, unsigned query_type);
|