Lines Matching refs:base
133 uint32_t base = nir_intrinsic_base(instr);
134 assert(base % 4 == 0);
141 base += dev->compiler->shared_consts_base_offset * 4;
143 assert(base >= shader->push_consts.lo * 4);
144 base -= shader->push_consts.lo * 4;
151 .base = base);
170 uint32_t base;
177 base = (layout->set[set].dynamic_offset_start +
182 base = binding_layout->offset / (4 * A6XX_TEX_CONST_DWORDS);
190 nir_iadd(b, nir_imm_int(b, base),
236 /* The bindless base is part of the instruction, which means that part of
603 uint32_t base = nir_intrinsic_base(intrin);
605 min = MIN2(min, base);
606 max = MAX2(max, base + range);