Lines Matching defs:shift
2349 int shift = devinfo->ver >= 8 ? 3 : 0;
2351 int32_t jip_compacted = brw_inst_jip(devinfo, insn) >> shift;
2355 brw_inst_set_jip(devinfo, insn, jip_compacted << shift);
2362 int32_t uip_compacted = brw_inst_uip(devinfo, insn) >> shift;
2366 brw_inst_set_uip(devinfo, insn, uip_compacted << shift);
2379 int shift = devinfo->platform == INTEL_PLATFORM_G4X ? 1 : 0;
2381 int jump_count_compacted = brw_inst_gfx4_jump_count(devinfo, insn) << shift;
2389 brw_inst_set_gfx4_jump_count(devinfo, insn, jump_count_compacted >> shift);
2636 int shift = 3;
2637 int jump_compacted = brw_inst_imm_d(devinfo, insn) >> shift;
2642 brw_inst_set_imm_ud(devinfo, insn, jump_compacted << shift);