Searched refs:offset_is_const (Results 1 - 4 of 4) sorted by relevance

/xsrc/external/mit/MesaLib/dist/src/intel/compiler/
H A Dbrw_nir_lower_mem_access_bit_sizes.c183 const bool offset_is_const = nir_src_is_const(*offset_src); local in function:lower_mem_store_bit_size
185 offset_is_const ? nir_src_as_uint(*offset_src) : 0;
211 (offset_is_const && (start + const_offset) % 4 == 0);
/xsrc/external/mit/MesaLib.old/dist/src/intel/compiler/
H A Dbrw_nir_lower_mem_access_bit_sizes.c178 const bool offset_is_const = nir_src_is_const(*offset_src); local in function:lower_mem_store_bit_size
180 offset_is_const ? nir_src_as_uint(*offset_src) : 0;
203 (offset_is_const && (start + const_offset) % 4 == 0);
/xsrc/external/mit/MesaLib/dist/src/asahi/compiler/
H A Dagx_compile.c330 bool offset_is_const = nir_src_is_const(*offset); local in function:agx_emit_load_ubo
331 assert(offset_is_const && "todo: indirect UBO access");
332 int32_t const_offset = offset_is_const ? nir_src_as_int(*offset) : 0;
358 (offset_is_const && (const_offset == const_as_16)) ?
/xsrc/external/mit/MesaLib/dist/src/panfrost/bifrost/
H A Dbifrost_compile.c729 bool offset_is_const = nir_src_is_const(*offset); local in function:bi_emit_load_ubo
731 uint32_t const_offset = offset_is_const ? nir_src_as_uint(*offset) : 0;
735 bi_dest_index(&instr->dest), offset_is_const ?

Completed in 12 milliseconds