/aosp_15_r20/external/mesa3d/src/intel/compiler/elk/ |
H A D | elk_fs_live_variables.cpp | 288 block_data[i].def = linear_zalloc_array(lin_ctx, BITSET_WORD, bitset_words); in fs_live_variables() 289 block_data[i].use = linear_zalloc_array(lin_ctx, BITSET_WORD, bitset_words); in fs_live_variables() 290 block_data[i].livein = linear_zalloc_array(lin_ctx, BITSET_WORD, bitset_words); in fs_live_variables() 291 block_data[i].liveout = linear_zalloc_array(lin_ctx, BITSET_WORD, bitset_words); in fs_live_variables() 292 block_data[i].defin = linear_zalloc_array(lin_ctx, BITSET_WORD, bitset_words); in fs_live_variables() 293 block_data[i].defout = linear_zalloc_array(lin_ctx, BITSET_WORD, bitset_words); in fs_live_variables()
|
H A D | elk_fs_copy_propagation.cpp | 293 bd = linear_zalloc_array(lin_ctx, struct block_data, cfg->num_blocks); in fs_copy_prop_dataflow() 302 bd[block->num].livein = linear_zalloc_array(lin_ctx, BITSET_WORD, bitset_words); in fs_copy_prop_dataflow() 303 bd[block->num].liveout = linear_zalloc_array(lin_ctx, BITSET_WORD, bitset_words); in fs_copy_prop_dataflow() 304 bd[block->num].copy = linear_zalloc_array(lin_ctx, BITSET_WORD, bitset_words); in fs_copy_prop_dataflow() 305 bd[block->num].kill = linear_zalloc_array(lin_ctx, BITSET_WORD, bitset_words); in fs_copy_prop_dataflow() 306 bd[block->num].undef = linear_zalloc_array(lin_ctx, BITSET_WORD, bitset_words); in fs_copy_prop_dataflow() 307 bd[block->num].reachin = linear_zalloc_array(lin_ctx, BITSET_WORD, bitset_words); in fs_copy_prop_dataflow() 308 bd[block->num].exec_mismatch = linear_zalloc_array(lin_ctx, BITSET_WORD, bitset_words); in fs_copy_prop_dataflow() 311 acp = linear_zalloc_array(lin_ctx, struct acp_entry *, num_acp); in fs_copy_prop_dataflow()
|
H A D | elk_schedule_instructions.cpp | 603 …this->last_grf_write = linear_zalloc_array(lin_ctx, elk_schedule_node *, grf_count * grf_write_sca… in elk_instruction_scheduler() 606 this->nodes = linear_zalloc_array(lin_ctx, elk_schedule_node, this->nodes_len); in elk_instruction_scheduler() 765 this->reg_pressure_in = linear_zalloc_array(lin_ctx, int, block_count); in elk_fs_instruction_scheduler() 769 this->livein[i] = linear_zalloc_array(lin_ctx, BITSET_WORD, in elk_fs_instruction_scheduler() 774 this->liveout[i] = linear_zalloc_array(lin_ctx, BITSET_WORD, in elk_fs_instruction_scheduler() 779 this->hw_liveout[i] = linear_zalloc_array(lin_ctx, BITSET_WORD, in elk_fs_instruction_scheduler()
|
/aosp_15_r20/external/mesa3d/src/intel/compiler/ |
H A D | brw_fs_live_variables.cpp | 288 block_data[i].def = linear_zalloc_array(lin_ctx, BITSET_WORD, bitset_words); in fs_live_variables() 289 block_data[i].use = linear_zalloc_array(lin_ctx, BITSET_WORD, bitset_words); in fs_live_variables() 290 block_data[i].livein = linear_zalloc_array(lin_ctx, BITSET_WORD, bitset_words); in fs_live_variables() 291 block_data[i].liveout = linear_zalloc_array(lin_ctx, BITSET_WORD, bitset_words); in fs_live_variables() 292 block_data[i].defin = linear_zalloc_array(lin_ctx, BITSET_WORD, bitset_words); in fs_live_variables() 293 block_data[i].defout = linear_zalloc_array(lin_ctx, BITSET_WORD, bitset_words); in fs_live_variables()
|
H A D | brw_fs_copy_propagation.cpp | 293 bd = linear_zalloc_array(lin_ctx, struct block_data, cfg->num_blocks); in fs_copy_prop_dataflow() 302 bd[block->num].livein = linear_zalloc_array(lin_ctx, BITSET_WORD, bitset_words); in fs_copy_prop_dataflow() 303 bd[block->num].liveout = linear_zalloc_array(lin_ctx, BITSET_WORD, bitset_words); in fs_copy_prop_dataflow() 304 bd[block->num].copy = linear_zalloc_array(lin_ctx, BITSET_WORD, bitset_words); in fs_copy_prop_dataflow() 305 bd[block->num].kill = linear_zalloc_array(lin_ctx, BITSET_WORD, bitset_words); in fs_copy_prop_dataflow() 306 bd[block->num].undef = linear_zalloc_array(lin_ctx, BITSET_WORD, bitset_words); in fs_copy_prop_dataflow() 307 bd[block->num].reachin = linear_zalloc_array(lin_ctx, BITSET_WORD, bitset_words); in fs_copy_prop_dataflow() 308 bd[block->num].exec_mismatch = linear_zalloc_array(lin_ctx, BITSET_WORD, bitset_words); in fs_copy_prop_dataflow() 311 acp = linear_zalloc_array(lin_ctx, struct acp_entry *, num_acp); in fs_copy_prop_dataflow()
|
H A D | brw_schedule_instructions.cpp | 699 … this->last_grf_write = linear_zalloc_array(lin_ctx, schedule_node *, grf_count * grf_write_scale); in instruction_scheduler() 702 this->nodes = linear_zalloc_array(lin_ctx, schedule_node, this->nodes_len); in instruction_scheduler() 732 this->reg_pressure_in = linear_zalloc_array(lin_ctx, int, block_count); in instruction_scheduler() 736 this->livein[i] = linear_zalloc_array(lin_ctx, BITSET_WORD, in instruction_scheduler() 741 this->liveout[i] = linear_zalloc_array(lin_ctx, BITSET_WORD, in instruction_scheduler() 746 this->hw_liveout[i] = linear_zalloc_array(lin_ctx, BITSET_WORD, in instruction_scheduler()
|
/aosp_15_r20/external/mesa3d/src/util/ |
H A D | ralloc.h | 711 #define linear_zalloc_array(ctx, type, count) \ macro
|
/aosp_15_r20/external/mesa3d/src/compiler/spirv/ |
H A D | vtn_private.h | 131 #define vtn_zalloc_array(B, TYPE, ELEMS) linear_zalloc_array(B->lin_ctx, TYPE, ELEMS)
|
/aosp_15_r20/external/mesa3d/src/compiler/ |
H A D | glsl_types.c | 114 linear_zalloc_array(lin_ctx, glsl_struct_field, num_fields); in make_struct_type() 152 linear_zalloc_array(lin_ctx, glsl_struct_field, num_fields); in make_interface_type()
|