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

123

/external/mesa3d/src/gallium/drivers/etnaviv/
H A Detnaviv_query_sw.h45 etna_sw_create_query(struct etna_context *ctx, unsigned query_type);
H A Detnaviv_query_sw.c101 etna_sw_create_query(struct etna_context *ctx, unsigned query_type) argument
106 switch (query_type) {
120 q->type = query_type;
H A Detnaviv_query.c35 etna_create_query(struct pipe_context *pctx, unsigned query_type, argument
41 q = etna_sw_create_query(ctx, query_type);
/external/mesa3d/src/gallium/drivers/freedreno/
H A Dfreedreno_query_sw.h53 unsigned query_type);
H A Dfreedreno_query_hw.h51 * queries with the same query_type. So we cache per sample provider
74 unsigned query_type; member in struct:fd_hw_sample_provider
141 struct fd_query * fd_hw_create_query(struct fd_context *ctx, unsigned query_type);
H A Dfreedreno_query.c43 fd_create_query(struct pipe_context *pctx, unsigned query_type, unsigned index) argument
48 q = fd_sw_create_query(ctx, query_type);
50 q = fd_hw_create_query(ctx, query_type);
H A Dfreedreno_query_sw.c139 fd_sw_create_query(struct fd_context *ctx, unsigned query_type) argument
144 switch (query_type) {
163 q->type = query_type;
H A Dfreedreno_query_hw.c43 /* maps query_type to sample provider idx: */
44 static int pidx(unsigned query_type) argument
46 switch (query_type) {
65 unsigned query_type)
69 int idx = pidx(query_type);
106 int idx = pidx(hq->provider->query_type);
122 int idx = pidx(hq->provider->query_type);
312 fd_hw_create_query(struct fd_context *ctx, unsigned query_type) argument
316 int idx = pidx(query_type);
325 DBG("%p: query_type
64 get_sample(struct fd_batch *batch, struct fd_ringbuffer *ring, unsigned query_type) argument
[all...]
/external/mesa3d/src/mesa/state_tracker/
H A Dst_cb_perfmon.h56 unsigned query_type; member in struct:st_perf_monitor_counter
/external/mesa3d/src/gallium/auxiliary/hud/
H A Dhud_driver_query.c137 struct pipe_context *pipe, unsigned query_type,
152 if (bq->query_types[i] == query_type) {
170 bq->query_types[bq->num_query_types] = query_type;
202 unsigned query_type; member in struct:query_info
203 unsigned result_index; /* unit depends on query_type */
268 pipe->create_query(pipe, info->query_type, 0);
276 pipe->create_query(pipe, info->query_type, 0);
285 info->query[info->head] = pipe->create_query(pipe, info->query_type, 0);
361 const char *name, unsigned query_type,
388 if (!batch_query_add(pbq, pipe, query_type,
136 batch_query_add(struct hud_batch_query_context **pbq, struct pipe_context *pipe, unsigned query_type, unsigned *result_index) argument
359 hud_pipe_query_install(struct hud_batch_query_context **pbq, struct hud_pane *pane, struct pipe_context *pipe, const char *name, unsigned query_type, unsigned result_index, uint64_t max_value, enum pipe_driver_query_type type, enum pipe_driver_query_result_type result_type, unsigned flags) argument
[all...]
/external/parameter-framework/asio/include/asio/detail/
H A Dresolve_op.hpp39 typedef asio::ip::basic_resolver_query<Protocol> query_type; typedef in class:asio::detail::resolve_op
43 const query_type& query, io_service_impl& ios, Handler& handler)
116 query_type query_;
H A Dresolver_service.hpp42 typedef asio::ip::basic_resolver_query<Protocol> query_type; typedef in class:asio::detail::resolver_service
54 iterator_type resolve(implementation_type&, const query_type& query,
70 const query_type& query, Handler& handler)
/external/parameter-framework/asio/include/asio/ip/
H A Dresolver_service.hpp44 typedef basic_resolver_query<InternetProtocol> query_type; typedef in class:asio::ip::resolver_service
85 iterator_type resolve(implementation_type& impl, const query_type& query,
95 async_resolve(implementation_type& impl, const query_type& query,
/external/parameter-framework/asio-1.10.6/include/asio/detail/
H A Dresolve_op.hpp39 typedef asio::ip::basic_resolver_query<Protocol> query_type; typedef in class:asio::detail::resolve_op
43 const query_type& query, io_service_impl& ios, Handler& handler)
116 query_type query_;
H A Dresolver_service.hpp42 typedef asio::ip::basic_resolver_query<Protocol> query_type; typedef in class:asio::detail::resolver_service
54 iterator_type resolve(implementation_type&, const query_type& query,
70 const query_type& query, Handler& handler)
/external/parameter-framework/asio-1.10.6/include/asio/ip/
H A Dresolver_service.hpp44 typedef basic_resolver_query<InternetProtocol> query_type; typedef in class:asio::ip::resolver_service
85 iterator_type resolve(implementation_type& impl, const query_type& query,
95 async_resolve(implementation_type& impl, const query_type& query,
/external/mesa3d/src/gallium/drivers/freedreno/a4xx/
H A Dfd4_query.c241 .query_type = PIPE_QUERY_OCCLUSION_COUNTER,
248 .query_type = PIPE_QUERY_OCCLUSION_PREDICATE,
255 .query_type = PIPE_QUERY_TIME_ELAPSED,
269 .query_type = PIPE_QUERY_TIMESTAMP,
/external/mesa3d/src/gallium/drivers/i915/
H A Di915_query.c43 unsigned query_type,
42 i915_create_query(struct pipe_context *ctx, unsigned query_type, unsigned index) argument
/external/mesa3d/src/gallium/drivers/vc4/
H A Dvc4_query.c39 vc4_create_query(struct pipe_context *ctx, unsigned query_type, unsigned index) argument
/external/mesa3d/src/gallium/drivers/freedreno/a3xx/
H A Dfd3_query.c121 .query_type = PIPE_QUERY_OCCLUSION_COUNTER,
128 .query_type = PIPE_QUERY_OCCLUSION_PREDICATE,
/external/mesa3d/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_GPU_FINISHED) {
50 q->type = query_type;
52 if (query_type == PIPE_QUERY_GPU_FINISHED) {
32 r300_create_query(struct pipe_context *pipe, unsigned query_type, unsigned index) argument
/external/mesa3d/src/gallium/drivers/virgl/
H A Dvirgl_query.c60 unsigned query_type, unsigned index)
78 query->type = query_type;
82 virgl_encoder_create_query(vctx, handle, query_type, index, query->buf, 0);
59 virgl_create_query(struct pipe_context *ctx, unsigned query_type, unsigned index) argument
/external/mesa3d/src/gallium/drivers/ilo/
H A Dilo_render.h72 unsigned query_type);
/external/mesa3d/src/gallium/drivers/trace/
H A Dtr_dump_state.h89 void trace_dump_query_result(unsigned query_type,
/external/deqp/external/openglcts/modules/gl/
H A Dgl4cPipelineStatisticsQueryTests.hpp262 static bool executeQuery(glw::GLenum query_type, glw::GLuint qo_id, glw::GLuint qo_bo_id,
287 const glw::GLenum query_type, const _draw_call_type* draw_call_type_ptr,
299 * @param query_type Type of the query used by the test iteration.
312 const glw::GLuint64* expected_values, glw::GLenum query_type,
334 << getStringForEnum(query_type) << "], "
310 getVerifyResultValuesErrorString(VALUE_TYPE value, const char* value_type, unsigned int n_expected_values, const glw::GLuint64* expected_values, glw::GLenum query_type, std::string draw_call_type_name, std::string primitive_type_name, bool is_primitive_restart_enabled) argument

Completed in 467 milliseconds

123