Searched refs:stats (Results 1 - 25 of 129) sorted by relevance

123456

/xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/i965/
H A Dbrw_reset.c39 struct drm_i915_reset_stats stats = { .ctx_id = brw->hw_ctx }; local in function:brw_get_graphics_reset_status
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 in function:brw_check_for_reset
83 if (drmIoctl(dri_screen->fd, DRM_IOCTL_I915_GET_RESET_STATS, &stats) != 0)
86 if (stats.batch_active > 0 || stats
[all...]
/xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/i965/
H A Dbrw_reset.c38 struct drm_i915_reset_stats stats = { .ctx_id = brw->hw_ctx }; local in function:brw_get_graphics_reset_status
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 in function:brw_check_for_reset
81 if (drmIoctl(brw->screen->fd, DRM_IOCTL_I915_GET_RESET_STATS, &stats) != 0)
84 if (stats.batch_active > 0 || stats
[all...]
/xsrc/external/mit/MesaLib/dist/.gitlab-ci/container/
H A Dcontainer_post_build.sh10 ccache --show-stats
H A Dcontainer_pre_build.sh27 ccache --show-stats
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/freedreno/
H A Dfreedreno_query_sw.c55 return ctx->stats.prims_generated;
57 return ctx->stats.prims_emitted;
59 return ctx->stats.draw_calls;
61 return ctx->stats.batch_total;
63 return ctx->stats.batch_sysmem;
65 return ctx->stats.batch_gmem;
67 return ctx->stats.batch_nondraw;
69 return ctx->stats.batch_restore;
71 return ctx->stats.staging_uploads;
73 return ctx->stats
[all...]
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/freedreno/
H A Dfreedreno_query_sw.c55 return ctx->stats.prims_generated;
57 return ctx->stats.prims_emitted;
59 return ctx->stats.draw_calls;
61 return ctx->stats.batch_total;
63 return ctx->stats.batch_sysmem;
65 return ctx->stats.batch_gmem;
67 return ctx->stats.batch_nondraw;
69 return ctx->stats.batch_restore;
71 return ctx->stats.staging_uploads;
73 return ctx->stats
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/llvmpipe/
H A Dlp_query.c163 struct pipe_query_data_so_statistics *stats = local in function:llvmpipe_get_query_result
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 in function:llvmpipe_get_query_result
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...]
H A Dlp_query.h52 struct pipe_query_data_pipeline_statistics stats; member in struct:llvmpipe_query
/xsrc/external/mit/MesaLib/dist/src/freedreno/ir3/
H A Ddisasm-a3xx.c102 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
525 disasm_a3xx_stat(uint32_t * dwords,int sizedwords,int level,FILE * out,unsigned gpu_id,struct shader_stats * stats) argument
593 struct shader_stats stats; local in function:disasm_a3xx
601 struct shader_stats stats; local in function:try_disasm_a3xx
[all...]
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/softpipe/
H A Dsp_query.c46 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
243 struct pipe_query_data_so_statistics *stats = local in function:softpipe_get_query_result
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/nouveau/
H A Dnouveau_context.h56 } 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)
H A Dnouveau_screen.h107 } stats; member in struct:nouveau_screen
115 p_atomic_add(&(s)->stats.named.n, (v)); \
118 p_atomic_add(&nouveau_screen((r)->base.screen)->stats.named.n, v); \
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/nouveau/
H A Dnouveau_context.h56 } 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.old/dist/src/gallium/drivers/softpipe/
H A Dsp_query.c46 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
227 struct pipe_query_data_so_statistics *stats = local in function:softpipe_get_query_result
[all...]
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/llvmpipe/
H A Dlp_query.c179 struct pipe_query_data_so_statistics *stats = local in function:llvmpipe_get_query_result
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 in function:llvmpipe_get_query_result
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
[all...]
H A Dlp_query.h53 struct pipe_query_data_pipeline_statistics stats; member in struct:llvmpipe_query
/xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/util/
H A Du_helpers.c180 struct pipe_query_data_pipeline_statistics stats; local in function:util_end_pipestat_query
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
[all...]
/xsrc/external/mit/libXpm/dist/src/
H A DRdFToBuf.c69 struct stat stats; local in function:XpmReadFileToBuffer
82 if (fstat(fd, &stats)) {
91 len = stats.st_size;
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/etnaviv/
H A Detnaviv_query_sw.c49 return ctx->stats.prims_emitted;
51 return ctx->stats.draw_calls;
53 return ctx->stats.rs_operations;
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/etnaviv/
H A Detnaviv_query_sw.c49 return ctx->stats.prims_generated;
51 return ctx->stats.draw_calls;
53 return ctx->stats.rs_operations;
/xsrc/external/mit/MesaLib.old/dist/src/mesa/main/
H A Dglthread.h75 struct util_queue_monitoring stats; member in struct:glthread_state
H A Dglthread.c64 ctx->Driver.SetBackgroundContext(ctx, &ctx->GLThread->stats);
94 glthread->stats.queue = &glthread->queue;
167 p_atomic_add(&glthread->stats.num_offloaded_items, next->used);
206 p_atomic_add(&glthread->stats.num_direct_items, next->used);
222 p_atomic_inc(&glthread->stats.num_syncs);
/xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/util/
H A Du_helpers.c272 struct pipe_query_data_pipeline_statistics stats; local in function:util_end_pipestat_query
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
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/hud/
H A Dhud_nic.c111 struct iw_statistics stats; local in function:query_wifi_bitrate
114 memset(&stats, 0, sizeof(stats));
118 req.u.data.pointer = &stats;
142 struct iw_statistics stats; local in function:query_nic_rssi
145 memset(&stats, 0, sizeof(stats));
149 req.u.data.pointer = &stats;
168 *leveldBm = ((char) stats.qual.level * -1);
/xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/hud/
H A Dhud_nic.c112 struct iw_statistics stats; local in function:query_wifi_bitrate
115 memset(&stats, 0, sizeof(stats));
119 req.u.data.pointer = &stats;
143 struct iw_statistics stats; local in function:query_nic_rssi
146 memset(&stats, 0, sizeof(stats));
150 req.u.data.pointer = &stats;
169 *leveldBm = ((char) stats.qual.level * -1);

Completed in 14 milliseconds

123456