HomeSort by relevance Sort by last modified time
    Searched refs:query_type (Results 1 - 25 of 54) sorted by null

1 2 3

  /external/mesa3d/src/gallium/drivers/etnaviv/
etnaviv_query_sw.h 45 etna_sw_create_query(struct etna_context *ctx, unsigned query_type);
etnaviv_query_sw.c 101 etna_sw_create_query(struct etna_context *ctx, unsigned query_type)
106 switch (query_type) {
120 q->type = query_type;
etnaviv_query.c 35 etna_create_query(struct pipe_context *pctx, unsigned query_type,
41 q = etna_sw_create_query(ctx, query_type);
  /external/mesa3d/src/gallium/drivers/freedreno/
freedreno_query_sw.h 53 unsigned query_type);
freedreno_query_hw.h 51 * 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);
freedreno_query.c 43 fd_create_query(struct pipe_context *pctx, unsigned query_type, unsigned index)
48 q = fd_sw_create_query(ctx, query_type);
50 q = fd_hw_create_query(ctx, query_type);
freedreno_query_sw.c 139 fd_sw_create_query(struct fd_context *ctx, unsigned query_type)
144 switch (query_type) {
163 q->type = query_type;
freedreno_query_hw.c 43 /* maps query_type to sample provider idx: */
44 static int pidx(unsigned query_type)
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)
316 int idx = pidx(query_type);
325 DBG("%p: query_type=%u", hq, query_type)
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_cb_perfmon.h 56 unsigned query_type; member in struct:st_perf_monitor_counter
  /external/mesa3d/src/gallium/auxiliary/hud/
hud_driver_query.c 137 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, &info->result_index)
    [all...]
hud_private.h 98 const char *name, unsigned query_type,
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
resolve_op.hpp 39 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_;
resolver_service.hpp 42 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/
resolver_service.hpp 44 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/
fd4_query.c 241 .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/
i915_query.c 43 unsigned query_type,
  /external/mesa3d/src/gallium/drivers/vc4/
vc4_query.c 39 vc4_create_query(struct pipe_context *ctx, unsigned query_type, unsigned index)
  /external/mesa3d/src/gallium/drivers/freedreno/a3xx/
fd3_query.c 121 .query_type = PIPE_QUERY_OCCLUSION_COUNTER,
128 .query_type = PIPE_QUERY_OCCLUSION_PREDICATE,
  /sdk/apps/SdkController/src/com/android/tools/sdkcontroller/handlers/
MultiTouchChannel.java 126 * @param query_type Query type.
130 public void onEmulatorQuery(int query_id, int query_type, ByteBuffer query_data) {
131 Loge("Unexpected query " + query_type + " in multi-touch");
  /external/mesa3d/src/gallium/drivers/r300/
r300_query.c 33 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) {
  /external/mesa3d/src/gallium/drivers/virgl/
virgl_query.c 60 unsigned query_type, unsigned index)
78 query->type = query_type;
82 virgl_encoder_create_query(vctx, handle, query_type, index, query->buf, 0);
  /external/mesa3d/src/gallium/drivers/ilo/
ilo_render.h 72 unsigned query_type);
  /external/mesa3d/src/gallium/drivers/trace/
tr_dump_state.h 89 void trace_dump_query_result(unsigned query_type,
  /sdk/apps/SdkController/src/com/android/tools/sdkcontroller/lib/
Connection.java 321 final int query_type = handshake.getInt(); local
322 assert query_type == ProtocolConstants.QUERY_HANDSHAKE;
348 if (query_type != ProtocolConstants.QUERY_HANDSHAKE) {
350 Loge("Unexpected handshake query type: " + query_type);
  /external/mesa3d/src/gallium/auxiliary/util/
u_dump_defines.c 394 DEFINE_UTIL_DUMP_CONTINUOUS(query_type)

Completed in 263 milliseconds

1 2 3