Searched refs:thread_index (Results 1 - 25 of 36) sorted by relevance

12

/xsrc/external/mit/MesaLib.old/dist/src/util/
H A Du_queue.c249 int thread_index; member in struct:thread_input
256 int thread_index = ((struct thread_input*)input)->thread_index; local in function:util_queue_thread_func
289 util_snprintf(name, sizeof(name), "%s%i", queue->name, thread_index);
300 while (thread_index < queue->num_threads && queue->num_queued == 0)
304 if (thread_index >= queue->num_threads) {
318 job.execute(job.job, thread_index);
321 job.cleanup(job.job, thread_index);
348 input->thread_index = index;
396 * when thread_index < num_thread
689 util_queue_get_thread_time_nano(struct util_queue * queue,unsigned thread_index) argument
[all...]
H A Du_queue.h192 typedef void (*util_queue_execute_func)(void *job, int thread_index);
247 unsigned thread_index);
H A Ddisk_cache.c851 destroy_put_job(void *job, int thread_index) argument
867 cache_put(void *job, int thread_index) argument
/xsrc/external/mit/MesaLib/dist/src/util/
H A Du_queue.c263 int thread_index; member in struct:thread_input
270 int thread_index = ((struct thread_input*)input)->thread_index; local in function:util_queue_thread_func
298 snprintf(name, sizeof(name), "%s%i", queue->name, thread_index);
309 while (thread_index < queue->num_threads && queue->num_queued == 0)
313 if (thread_index >= queue->num_threads) {
329 job.execute(job.job, job.global_data, thread_index);
333 job.cleanup(job.job, job.global_data, thread_index);
361 input->thread_index = index;
410 * when thread_index < num_thread
730 util_queue_get_thread_time_nano(struct util_queue * queue,unsigned thread_index) argument
[all...]
H A Du_queue.h194 typedef void (*util_queue_execute_func)(void *job, void *gdata, int thread_index);
255 unsigned thread_index);
H A Ddisk_cache.c314 destroy_put_job(void *job, void *gdata, int thread_index) argument
324 destroy_put_job_nocopy(void *job, void *gdata, int thread_index) argument
328 destroy_put_job(job, gdata, thread_index);
332 cache_put(void *job, void *gdata, int thread_index) argument
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/llvmpipe/
H A Dlp_rast.c646 pq->start[task->thread_index] = task->thread_data.vis_counter;
649 pq->start[task->thread_index] = task->thread_data.ps_invocations;
652 pq->start[task->thread_index] = os_time_get_nano();
676 pq->end[task->thread_index] +=
677 task->thread_data.vis_counter - pq->start[task->thread_index];
678 pq->start[task->thread_index] = 0;
682 pq->end[task->thread_index] = os_time_get_nano();
685 pq->end[task->thread_index] +=
686 task->thread_data.ps_invocations - pq->start[task->thread_index];
687 pq->start[task->thread_index]
[all...]
H A Dlp_rast_priv.h98 unsigned thread_index; member in struct:lp_rasterizer_task
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/llvmpipe/
H A Dlp_rast.c487 pq->start[task->thread_index] = task->thread_data.vis_counter;
490 pq->start[task->thread_index] = task->thread_data.ps_invocations;
514 pq->end[task->thread_index] +=
515 task->thread_data.vis_counter - pq->start[task->thread_index];
516 pq->start[task->thread_index] = 0;
519 pq->end[task->thread_index] = os_time_get_nano();
522 pq->end[task->thread_index] +=
523 task->thread_data.ps_invocations - pq->start[task->thread_index];
524 pq->start[task->thread_index] = 0;
700 task->thread_index, (lon
[all...]
H A Dlp_rast_priv.h98 unsigned thread_index; member in struct:lp_rasterizer_task
/xsrc/external/mit/MesaLib/dist/src/broadcom/compiler/
H A Dvir_register_allocate.c572 tmu_spilling_allowed(struct v3d_compile *c, int thread_index) argument
574 return thread_index == 0 && c->tmu_spilling_allowed;
615 int thread_index = ffs(c->threads) - 1; local in function:v3d_register_allocate
617 if (thread_index >= 1)
618 thread_index--;
767 c->compiler->reg_class_phys[thread_index]);
770 c->compiler->reg_class_r5[thread_index]);
773 c->compiler->reg_class_phys_or_acc[thread_index]);
777 c->compiler->reg_class_any[thread_index]);
823 if (is_uniform || tmu_spilling_allowed(c, thread_index)) {
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/mesa/main/
H A Dglthread.c44 glthread_unmarshal_batch(void *job, int thread_index) argument
60 glthread_thread_initialization(void *job, int thread_index) argument
/xsrc/external/mit/MesaLib.old/dist/src/broadcom/compiler/
H A Dvir_register_allocate.c455 int thread_index = ffs(c->threads) - 1; local in function:v3d_register_allocate
457 if (thread_index >= 1)
458 thread_index--;
607 c->compiler->reg_class_phys[thread_index]);
610 c->compiler->reg_class_r5[thread_index]);
613 c->compiler->reg_class_phys_or_acc[thread_index]);
617 c->compiler->reg_class_any[thread_index]);
656 thread_index == 0)) {
/xsrc/external/mit/MesaLib.old/dist/src/gallium/winsys/radeon/drm/
H A Dradeon_drm_cs.h136 void radeon_drm_cs_emit_ioctl_oneshot(void *job, int thread_index);
/xsrc/external/mit/MesaLib/dist/src/gallium/winsys/radeon/drm/
H A Dradeon_drm_cs.h140 void radeon_drm_cs_emit_ioctl_oneshot(void *job, void *gdata, int thread_index);
/xsrc/external/mit/MesaLib/dist/src/mesa/main/
H A Dglthread.c45 glthread_unmarshal_batch(void *job, void *gdata, int thread_index) argument
83 glthread_thread_initialization(void *job, void *gdata, int thread_index) argument
/xsrc/external/mit/MesaLib.old/dist/src/gallium/winsys/amdgpu/drm/
H A Damdgpu_cs.h272 void amdgpu_cs_submit_ib(void *job, int thread_index);
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/radeonsi/
H A Dsi_state_shaders.c1686 int thread_index,
1695 if (thread_index >= 0) {
1697 assert(thread_index < ARRAY_SIZE(sscreen->compiler_lowp));
1698 compiler = &sscreen->compiler_lowp[thread_index];
1700 assert(thread_index < ARRAY_SIZE(sscreen->compiler));
1701 compiler = &sscreen->compiler[thread_index];
1730 static void si_build_shader_variant_low_priority(void *job, int thread_index) argument
1734 assert(thread_index >= 0);
1736 si_build_shader_variant(shader, thread_index, true);
1779 int thread_index)
1685 si_build_shader_variant(struct si_shader * shader,int thread_index,bool low_priority) argument
1775 si_shader_select_with_key(struct si_screen * sscreen,struct si_shader_ctx_state * state,struct si_compiler_ctx_state * compiler_state,struct si_shader_key * key,int thread_index) argument
2038 si_init_shader_selector_async(void * job,int thread_index) argument
[all...]
H A Dsi_compute.c84 static void si_create_compute_state_async(void *job, int thread_index) argument
94 assert(thread_index >= 0);
95 assert(thread_index < ARRAY_SIZE(sscreen->compiler));
96 compiler = &sscreen->compiler[thread_index];
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/freedreno/ir3/
H A Dir3_gallium.c245 create_initial_variants_async(void *job, void *gdata, int thread_index) argument
254 create_initial_compute_variants_async(void *job, void *gdata, int thread_index) argument
/xsrc/external/mit/MesaLib/dist/src/util/perf/
H A Du_trace.c322 process_chunk(void *job, void *gdata, int thread_index) argument
390 cleanup_chunk(void *job, void *gdata, int thread_index) argument
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/radeonsi/
H A Dsi_state_shaders.c2200 static void si_build_shader_variant(struct si_shader *shader, int thread_index, bool low_priority) argument
2207 if (thread_index >= 0) {
2209 assert(thread_index < ARRAY_SIZE(sscreen->compiler_lowp));
2210 compiler = &sscreen->compiler_lowp[thread_index];
2212 assert(thread_index < ARRAY_SIZE(sscreen->compiler));
2213 compiler = &sscreen->compiler[thread_index];
2242 static void si_build_shader_variant_low_priority(void *job, void *gdata, int thread_index) argument
2246 assert(thread_index >= 0);
2248 si_build_shader_variant(shader, thread_index, true);
2304 const struct si_shader_key *key, int thread_index,
2303 si_shader_select_with_key(struct si_context * sctx,struct si_shader_ctx_state * state,const struct si_shader_key * key,int thread_index,bool optimized_or_none) argument
2608 si_init_shader_selector_async(void * job,void * gdata,int thread_index) argument
[all...]
H A Dsi_compute.c110 static void si_create_compute_state_async(void *job, void *gdata, int thread_index) argument
120 assert(thread_index >= 0);
121 assert(thread_index < ARRAY_SIZE(sscreen->compiler));
122 compiler = &sscreen->compiler[thread_index];
H A Dsi_state.h575 const struct si_shader_key *key, int thread_index,
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/zink/
H A Dzink_batch.c333 post_submit(void *data, void *gdata, int thread_index) argument
348 submit_queue(void *data, void *gdata, int thread_index) argument

Completed in 88 milliseconds

12