Lines Matching defs:offset
671 %type <num> integer offset
1101 cat6_imm_offset: offset { new_src(0, IR3_REG_IMMED)->iim_val = $1; }
1104 cat6_dst_offset: offset { instr->cat6.dst_offset = $1; }
1110 '+' '(' src offset ')' '<' '<' integer {
1115 | '+' src '<' '<' integer offset '<' '<' integer {
1340 offset: { $$ = 0; }
1344 relative_gpr_src: 'r' '<' T_A0 offset '>' { new_src(0, IR3_REG_RELATIV)->array.offset = $4; }
1345 | T_HR '<' T_A0 offset '>' { new_src(0, IR3_REG_RELATIV | IR3_REG_HALF)->array.offset = $4; }
1347 relative_gpr_dst: 'r' '<' T_A0 offset '>' { new_dst(0, IR3_REG_RELATIV)->array.offset = $4; }
1348 | T_HR '<' T_A0 offset '>' { new_dst(0, IR3_REG_RELATIV | IR3_REG_HALF)->array.offset = $4; }
1350 relative_const: 'c' '<' T_A0 offset '>' { new_src(0, IR3_REG_RELATIV | IR3_REG_CONST)->array.offset = $4; }
1351 | T_HC '<' T_A0 offset '>' { new_src(0, IR3_REG_RELATIV | IR3_REG_CONST | IR3_REG_HALF)->array.offset = $4; }