| /xsrc/external/mit/MesaLib.old/dist/src/intel/compiler/ |
| H A D | brw_fs_live_variables.cpp | 259 var_from_vgrf = rzalloc_array(mem_ctx, int, num_vgrfs); 265 vgrf_from_var = rzalloc_array(mem_ctx, int, num_vars); 273 end = rzalloc_array(mem_ctx, int, num_vars); 279 block_data= rzalloc_array(mem_ctx, struct block_data, cfg->num_blocks); 283 block_data[i].def = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words); 284 block_data[i].use = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words); 285 block_data[i].livein = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words); 286 block_data[i].liveout = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words); 287 block_data[i].defin = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words); 288 block_data[i].defout = rzalloc_array(mem_ct [all...] |
| H A D | brw_fs_dead_code_eliminate.cpp | 80 BITSET_WORD *live = rzalloc_array(NULL, BITSET_WORD, BITSET_WORDS(num_vars)); 81 BITSET_WORD *flag_live = rzalloc_array(NULL, BITSET_WORD, 1);
|
| H A D | brw_vec4_live_variables.cpp | 190 block_data = rzalloc_array(mem_ctx, struct block_data, cfg->num_blocks); 194 block_data[i].def = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words); 195 block_data[i].use = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words); 196 block_data[i].livein = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words); 197 block_data[i].liveout = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words);
|
| H A D | brw_vec4_dead_code_eliminate.cpp | 47 BITSET_WORD *live = rzalloc_array(NULL, BITSET_WORD, BITSET_WORDS(num_vars)); 48 BITSET_WORD *flag_live = rzalloc_array(NULL, BITSET_WORD, 1);
|
| /xsrc/external/mit/MesaLib/dist/src/broadcom/compiler/ |
| H A D | vir_live_variables.c | 152 rzalloc_array(c, struct partial_update_state, c->num_temps); 315 c->temp_start = rzalloc_array(c, int, c->num_temps); 316 c->temp_end = rzalloc_array(c, int, c->num_temps); 324 block->def = rzalloc_array(c, BITSET_WORD, bitset_words); 325 block->defin = rzalloc_array(c, BITSET_WORD, bitset_words); 326 block->defout = rzalloc_array(c, BITSET_WORD, bitset_words); 327 block->use = rzalloc_array(c, BITSET_WORD, bitset_words); 328 block->live_in = rzalloc_array(c, BITSET_WORD, bitset_words); 329 block->live_out = rzalloc_array(c, BITSET_WORD, bitset_words);
|
| /xsrc/external/mit/MesaLib.old/dist/src/broadcom/compiler/ |
| H A D | vir_live_variables.c | 350 c->temp_start = rzalloc_array(c, int, c->num_temps); 351 c->temp_end = rzalloc_array(c, int, c->num_temps); 359 block->def = rzalloc_array(c, BITSET_WORD, bitset_words); 360 block->defin = rzalloc_array(c, BITSET_WORD, bitset_words); 361 block->defout = rzalloc_array(c, BITSET_WORD, bitset_words); 362 block->use = rzalloc_array(c, BITSET_WORD, bitset_words); 363 block->live_in = rzalloc_array(c, BITSET_WORD, bitset_words); 364 block->live_out = rzalloc_array(c, BITSET_WORD, bitset_words);
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/vc4/ |
| H A D | vc4_qir_live_variables.c | 307 c->temp_start = rzalloc_array(c, int, c->num_temps); 308 c->temp_end = rzalloc_array(c, int, c->num_temps); 316 block->def = rzalloc_array(c, BITSET_WORD, bitset_words); 317 block->use = rzalloc_array(c, BITSET_WORD, bitset_words); 318 block->live_in = rzalloc_array(c, BITSET_WORD, bitset_words); 319 block->live_out = rzalloc_array(c, BITSET_WORD, bitset_words);
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/vc4/ |
| H A D | vc4_qir_live_variables.c | 295 c->temp_start = rzalloc_array(c, int, c->num_temps); 296 c->temp_end = rzalloc_array(c, int, c->num_temps); 304 block->def = rzalloc_array(c, BITSET_WORD, bitset_words); 305 block->use = rzalloc_array(c, BITSET_WORD, bitset_words); 306 block->live_in = rzalloc_array(c, BITSET_WORD, bitset_words); 307 block->live_out = rzalloc_array(c, BITSET_WORD, bitset_words);
|
| /xsrc/external/mit/MesaLib/dist/src/intel/compiler/ |
| H A D | brw_fs_live_variables.cpp | 265 var_from_vgrf = rzalloc_array(mem_ctx, int, num_vgrfs); 271 vgrf_from_var = rzalloc_array(mem_ctx, int, num_vars); 279 end = rzalloc_array(mem_ctx, int, num_vars); 292 block_data = rzalloc_array(mem_ctx, struct block_data, cfg->num_blocks); 296 block_data[i].def = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words); 297 block_data[i].use = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words); 298 block_data[i].livein = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words); 299 block_data[i].liveout = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words); 300 block_data[i].defin = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words); 301 block_data[i].defout = rzalloc_array(mem_ct [all...] |
| H A D | brw_fs_dead_code_eliminate.cpp | 82 BITSET_WORD *live = rzalloc_array(NULL, BITSET_WORD, BITSET_WORDS(num_vars)); 83 BITSET_WORD *flag_live = rzalloc_array(NULL, BITSET_WORD, 1);
|
| H A D | brw_vec4_live_variables.cpp | 234 block_data = rzalloc_array(mem_ctx, struct block_data, cfg->num_blocks); 238 block_data[i].def = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words); 239 block_data[i].use = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words); 240 block_data[i].livein = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words); 241 block_data[i].liveout = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words);
|
| H A D | brw_vec4_dead_code_eliminate.cpp | 46 BITSET_WORD *live = rzalloc_array(NULL, BITSET_WORD, BITSET_WORDS(num_vars)); 47 BITSET_WORD *flag_live = rzalloc_array(NULL, BITSET_WORD, 1);
|
| /xsrc/external/mit/MesaLib/dist/src/asahi/compiler/ |
| H A D | agx_liveness.c | 109 block->live_in = rzalloc_array(block, BITSET_WORD, words); 110 block->live_out = rzalloc_array(block, BITSET_WORD, words);
|
| /xsrc/external/mit/MesaLib/dist/src/compiler/nir/ |
| H A D | nir_worklist.c | 38 w->blocks_present = rzalloc_array(mem_ctx, BITSET_WORD, 40 w->blocks = rzalloc_array(mem_ctx, nir_block *, num_blocks);
|
| /xsrc/external/mit/MesaLib.old/dist/src/compiler/nir/ |
| H A D | nir_worklist.c | 38 w->blocks_present = rzalloc_array(mem_ctx, BITSET_WORD, 40 w->blocks = rzalloc_array(mem_ctx, nir_block *, num_blocks);
|
| /xsrc/external/mit/MesaLib/dist/src/panfrost/bifrost/ |
| H A D | bi_liveness.c | 115 block->live_in = rzalloc_array(block, uint8_t, temp_count); 116 block->live_out = rzalloc_array(block, uint8_t, temp_count);
|
| /xsrc/external/mit/MesaLib/dist/src/panfrost/util/ |
| H A D | pan_liveness.c | 128 block->live_in = rzalloc_array(block, uint16_t, temp_count); 129 block->live_out = rzalloc_array(block, uint16_t, temp_count);
|
| /xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/ |
| H A D | gl_nir_link_atomics.c | 140 rzalloc_array(NULL, /* ctx */ 183 rzalloc_array(prog->data, struct gl_active_atomic_buffer, num_buffers); 203 mab->Uniforms = rzalloc_array(prog->data->AtomicBuffers, GLuint, 252 rzalloc_array(gl_prog,
|
| H A D | gl_nir_link_xfb.c | 103 rzalloc_array(xfb_prog, 109 rzalloc_array(xfb_prog,
|
| H A D | serialize.cpp | 86 subs = rzalloc_array(prog, struct gl_subroutine_function, 95 subs[j].types = rzalloc_array(prog, const struct glsl_type *, 170 rzalloc_array(prog->data, struct gl_uniform_buffer_variable, 196 rzalloc_array(prog->data, struct gl_uniform_block, 200 rzalloc_array(prog->data, struct gl_uniform_block, 222 rzalloc_array(glprog, gl_uniform_block *, glprog->info.num_ubos); 224 rzalloc_array(glprog, gl_uniform_block *, glprog->info.num_ssbos); 271 rzalloc_array(prog, gl_active_atomic_buffer, 281 rzalloc_array(glprog, gl_active_atomic_buffer *, 296 prog->data->AtomicBuffers[i].Uniforms = rzalloc_array(pro [all...] |
| /xsrc/external/mit/MesaLib/dist/src/intel/perf/ |
| H A D | intel_perf_private.h | 84 rzalloc_array(perf, struct intel_perf_query_counter, max_counters);
|
| /xsrc/external/mit/MesaLib/dist/src/compiler/glsl/ |
| H A D | gl_nir_link_xfb.c | 100 rzalloc_array(xfb_prog, 106 rzalloc_array(xfb_prog,
|
| H A D | gl_nir_link_atomics.c | 139 rzalloc_array(NULL, /* ctx */ 202 rzalloc_array(prog->data, struct gl_active_atomic_buffer, num_buffers); 222 mab->Uniforms = rzalloc_array(prog->data->AtomicBuffers, GLuint, 271 rzalloc_array(gl_prog,
|
| /xsrc/external/mit/MesaLib/dist/src/freedreno/ir3/ |
| H A D | ir3_liveness.c | 149 rzalloc_array(live, BITSET_WORD, bitset_words); 151 rzalloc_array(live, BITSET_WORD, bitset_words);
|
| /xsrc/external/mit/MesaLib/dist/src/compiler/spirv/ |
| H A D | nir_lower_libclc.c | 55 nir_ssa_def **params = rzalloc_array(b->shader, nir_ssa_def*, call->num_params);
|