Searched refs:rzalloc_array (Results 1 - 25 of 152) sorted by relevance

1234567

/xsrc/external/mit/MesaLib.old/dist/src/intel/compiler/
H A Dbrw_fs_live_variables.cpp259 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 Dbrw_fs_dead_code_eliminate.cpp80 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 Dbrw_vec4_live_variables.cpp190 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 Dbrw_vec4_dead_code_eliminate.cpp47 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 Dvir_live_variables.c152 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 Dvir_live_variables.c350 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 Dvc4_qir_live_variables.c307 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 Dvc4_qir_live_variables.c295 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 Dbrw_fs_live_variables.cpp265 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 Dbrw_fs_dead_code_eliminate.cpp82 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 Dbrw_vec4_live_variables.cpp234 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 Dbrw_vec4_dead_code_eliminate.cpp46 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 Dagx_liveness.c109 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 Dnir_worklist.c38 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 Dnir_worklist.c38 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 Dbi_liveness.c115 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 Dpan_liveness.c128 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 Dgl_nir_link_atomics.c140 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 Dgl_nir_link_xfb.c103 rzalloc_array(xfb_prog,
109 rzalloc_array(xfb_prog,
H A Dserialize.cpp86 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 Dintel_perf_private.h84 rzalloc_array(perf, struct intel_perf_query_counter, max_counters);
/xsrc/external/mit/MesaLib/dist/src/compiler/glsl/
H A Dgl_nir_link_xfb.c100 rzalloc_array(xfb_prog,
106 rzalloc_array(xfb_prog,
H A Dgl_nir_link_atomics.c139 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 Dir3_liveness.c149 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 Dnir_lower_libclc.c55 nir_ssa_def **params = rzalloc_array(b->shader, nir_ssa_def*, call->num_params);

Completed in 19 milliseconds

1234567