HomeSort by: relevance | last modified time | path
    Searched defs:stats (Results 1 - 25 of 49) sorted by relevancy

1 2

  /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/i965/
brw_reset.c 38 struct drm_i915_reset_stats stats = { .ctx_id = brw->hw_ctx }; local
53 if (drmIoctl(brw->screen->fd, DRM_IOCTL_I915_GET_RESET_STATS, &stats) != 0)
59 if (stats.batch_active != 0) {
60 brw->reset_count = stats.reset_count;
68 if (stats.batch_pending != 0) {
69 brw->reset_count = stats.reset_count;
79 struct drm_i915_reset_stats stats = { .ctx_id = brw->hw_ctx }; local
81 if (drmIoctl(brw->screen->fd, DRM_IOCTL_I915_GET_RESET_STATS, &stats) != 0)
84 if (stats.batch_active > 0 || stats.batch_pending > 0
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/i965/
brw_reset.c 39 struct drm_i915_reset_stats stats = { .ctx_id = brw->hw_ctx }; local
54 if (drmIoctl(dri_screen->fd, DRM_IOCTL_I915_GET_RESET_STATS, &stats) != 0)
60 if (stats.batch_active != 0) {
61 brw->reset_count = stats.reset_count;
69 if (stats.batch_pending != 0) {
70 brw->reset_count = stats.reset_count;
81 struct drm_i915_reset_stats stats = { .ctx_id = brw->hw_ctx }; local
83 if (drmIoctl(dri_screen->fd, DRM_IOCTL_I915_GET_RESET_STATS, &stats) != 0)
86 if (stats.batch_active > 0 || stats.batch_pending > 0
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/llvmpipe/
lp_query.h 53 struct pipe_query_data_pipeline_statistics stats; member in struct:llvmpipe_query
lp_query.c 179 struct pipe_query_data_so_statistics *stats = local
181 stats->num_primitives_written = pq->num_primitives_written[0];
182 stats->primitives_storage_needed = pq->num_primitives_generated[0];
186 struct pipe_query_data_pipeline_statistics *stats = local
190 pq->stats.ps_invocations += pq->end[i];
192 pq->stats.ps_invocations *= LP_RASTER_BLOCK_SIZE * LP_RASTER_BLOCK_SIZE;
193 *stats = pq->stats;
294 value = pq->stats.ia_vertices;
297 value = pq->stats.ia_primitives
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/llvmpipe/
lp_query.h 52 struct pipe_query_data_pipeline_statistics stats; member in struct:llvmpipe_query
lp_query.c 163 struct pipe_query_data_so_statistics *stats = local
165 stats->num_primitives_written = pq->num_primitives_written;
166 stats->primitives_storage_needed = pq->num_primitives_generated;
170 struct pipe_query_data_pipeline_statistics *stats = local
174 pq->stats.ps_invocations += pq->end[i];
176 pq->stats.ps_invocations *= LP_RASTER_BLOCK_SIZE * LP_RASTER_BLOCK_SIZE;
177 *stats = pq->stats;
230 memcpy(&pq->stats, &llvmpipe->pipeline_statistics, sizeof(pq->stats));
    [all...]
  /xsrc/external/mit/libXpm/dist/src/
RdFToBuf.c 60 struct stat stats; local
69 if (fstat(fd, &stats)) {
78 len = stats.st_size;
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/main/
glthread.h 75 struct util_queue_monitoring stats; member in struct:glthread_state
  /xsrc/external/mit/xorgproto/dist/include/X11/extensions/
xtrapddmi.h 69 xXTrapGetStatsReply *stats; /* Pointer to stat's, malloc'd if requested */ member in struct:__anon11958
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/softpipe/
sp_query.c 46 struct pipe_query_data_pipeline_statistics stats; member in struct:softpipe_query
134 memcpy(&sq->stats, &softpipe->pipeline_statistics,
135 sizeof(sq->stats));
202 sq->stats.ia_vertices =
203 softpipe->pipeline_statistics.ia_vertices - sq->stats.ia_vertices;
204 sq->stats.ia_primitives =
205 softpipe->pipeline_statistics.ia_primitives - sq->stats.ia_primitives;
206 sq->stats.vs_invocations =
207 softpipe->pipeline_statistics.vs_invocations - sq->stats.vs_invocations;
208 sq->stats.gs_invocations
243 struct pipe_query_data_so_statistics *stats = local
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/util/
u_helpers.c 180 struct pipe_query_data_pipeline_statistics stats; local
183 ctx->get_query_result(ctx, q, true, (void*)&stats);
200 stats.ia_vertices,
201 stats.ia_primitives,
202 stats.vs_invocations,
203 stats.gs_invocations,
204 stats.gs_primitives,
205 stats.c_invocations,
206 stats.c_primitives,
207 stats.ps_invocations
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/softpipe/
sp_query.c 46 struct pipe_query_data_pipeline_statistics stats; member in struct:softpipe_query
129 memcpy(&sq->stats, &softpipe->pipeline_statistics,
130 sizeof(sq->stats));
188 sq->stats.ia_vertices =
189 softpipe->pipeline_statistics.ia_vertices - sq->stats.ia_vertices;
190 sq->stats.ia_primitives =
191 softpipe->pipeline_statistics.ia_primitives - sq->stats.ia_primitives;
192 sq->stats.vs_invocations =
193 softpipe->pipeline_statistics.vs_invocations - sq->stats.vs_invocations;
194 sq->stats.gs_invocations
227 struct pipe_query_data_so_statistics *stats = local
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/util/
u_helpers.c 272 struct pipe_query_data_pipeline_statistics stats; local
275 ctx->get_query_result(ctx, q, true, (void*)&stats);
292 stats.ia_vertices,
293 stats.ia_primitives,
294 stats.vs_invocations,
295 stats.gs_invocations,
296 stats.gs_primitives,
297 stats.c_invocations,
298 stats.c_primitives,
299 stats.ps_invocations
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/nouveau/
nouveau_context.h 56 } stats; member in struct:nouveau_context
108 nv->stats.buf_cache_frame <<= 1;
109 if (nv->stats.buf_cache_count) {
110 nv->stats.buf_cache_count = 0;
111 nv->stats.buf_cache_frame |= 1;
112 if ((nv->stats.buf_cache_frame & 0xf) == 0xf)
nouveau_screen.h 114 } stats; member in struct:nouveau_screen
122 p_atomic_add(&(s)->stats.named.n, (v)); \
125 p_atomic_add(&nouveau_screen((r)->base.screen)->stats.named.n, v); \
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/nouveau/
nouveau_context.h 56 } stats; member in struct:nouveau_context
108 nv->stats.buf_cache_frame <<= 1;
109 if (nv->stats.buf_cache_count) {
110 nv->stats.buf_cache_count = 0;
111 nv->stats.buf_cache_frame |= 1;
112 if ((nv->stats.buf_cache_frame & 0xf) == 0xf)
  /xsrc/external/mit/MesaLib/dist/src/freedreno/ir3/
disasm-a3xx.c 102 struct shader_stats *stats; member in struct:disasm_ctx
113 unsigned n = (ctx->stats->halfreg + 1) / 2;
115 ctx->stats->halfreg = 0;
116 ctx->stats->fullreg = MAX2(ctx->stats->fullreg, n);
124 levels[ctx->level], instructions, ctx->stats->nops,
125 instructions - ctx->stats->nops, ctx->stats->mov_count,
126 ctx->stats->cov_count);
130 levels[ctx->level], ctx->stats->last_baryf
593 struct shader_stats stats; local
601 struct shader_stats stats; local
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/hud/
hud_nic.c 112 struct iw_statistics stats; local
115 memset(&stats, 0, sizeof(stats));
119 req.u.data.pointer = &stats;
143 struct iw_statistics stats; local
146 memset(&stats, 0, sizeof(stats));
150 req.u.data.pointer = &stats;
169 *leveldBm = ((char) stats.qual.level * -1);
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/hud/
hud_nic.c 111 struct iw_statistics stats; local
114 memset(&stats, 0, sizeof(stats));
118 req.u.data.pointer = &stats;
142 struct iw_statistics stats; local
145 memset(&stats, 0, sizeof(stats));
149 req.u.data.pointer = &stats;
168 *leveldBm = ((char) stats.qual.level * -1);
  /xsrc/external/mit/MesaLib.old/dist/src/intel/vulkan/
anv_gem.c 384 struct drm_i915_reset_stats stats = { local
388 int ret = anv_ioctl(device->fd, DRM_IOCTL_I915_GET_RESET_STATS, &stats);
390 *active = stats.batch_active;
391 *pending = stats.batch_pending;
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/crocus/
crocus_batch.c 796 struct drm_i915_reset_stats stats = { .ctx_id = batch->hw_ctx_id }; local
798 if (drmIoctl(screen->fd, DRM_IOCTL_I915_GET_RESET_STATS, &stats))
801 if (stats.batch_active != 0) {
806 } else if (stats.batch_pending != 0) {
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/iris/
iris_batch.c 615 struct drm_i915_reset_stats stats = { .ctx_id = batch->hw_ctx_id }; local
617 if (intel_ioctl(screen->fd, DRM_IOCTL_I915_GET_RESET_STATS, &stats))
620 if (stats.batch_active != 0) {
625 } else if (stats.batch_pending != 0) {
  /xsrc/external/mit/MesaLib/dist/src/intel/tools/
intel_dump_gpu.c 532 struct drm_i915_reset_stats *stats = argp; local
534 stats->reset_count = 0;
535 stats->batch_active = 0;
536 stats->batch_pending = 0;
  /xsrc/external/mit/MesaLib/dist/src/intel/vulkan/
anv_gem.c 536 struct drm_i915_reset_stats stats = { local
540 int ret = intel_ioctl(fd, DRM_IOCTL_I915_GET_RESET_STATS, &stats);
542 *active = stats.batch_active;
543 *pending = stats.batch_pending;
anv_pipeline_cache.c 41 const struct brw_compile_stats *stats, uint32_t num_stats,
128 assert(num_stats <= ARRAY_SIZE(shader->stats));
129 typed_memcpy(shader->stats, stats, num_stats);
180 blob_write_bytes(blob, shader->stats,
181 shader->num_stats * sizeof(shader->stats[0]));
237 const struct brw_compile_stats *stats = local
238 blob_read_bytes(blob, num_stats * sizeof(stats[0]));
266 stats, num_stats, xfb_info, &bind_map);
435 const struct brw_compile_stats *stats,
    [all...]

Completed in 47 milliseconds

1 2