Lines Matching defs:DST
179 #define BPF_ALU64_REG(OP, DST, SRC) \
182 .dst_reg = DST, \
187 #define BPF_ALU32_REG(OP, DST, SRC) \
190 .dst_reg = DST, \
197 #define BPF_ALU64_IMM(OP, DST, IMM) \
200 .dst_reg = DST, \
205 #define BPF_ALU32_IMM(OP, DST, IMM) \
208 .dst_reg = DST, \
215 #define BPF_MOV64_REG(DST, SRC) \
218 .dst_reg = DST, \
225 #define BPF_MOV64_IMM(DST, IMM) \
228 .dst_reg = DST, \
234 #define BPF_LD_IMM64(DST, IMM) \
235 BPF_LD_IMM64_RAW(DST, 0, IMM)
237 #define BPF_LD_IMM64_RAW(DST, SRC, IMM) \
240 .dst_reg = DST, \
254 #define BPF_LD_MAP_FD(DST, MAP_FD) \
255 BPF_LD_IMM64_RAW(DST, BPF_PSEUDO_MAP_FD, MAP_FD)
270 #define BPF_LDX_MEM(SIZE, DST, SRC, OFF) \
273 .dst_reg = DST, \
280 #define BPF_STX_MEM(SIZE, DST, SRC, OFF) \
283 .dst_reg = DST, \
290 #define BPF_ST_MEM(SIZE, DST, OFF, IMM) \
293 .dst_reg = DST, \
300 #define BPF_JMP_REG(OP, DST, SRC, OFF) \
303 .dst_reg = DST, \
310 #define BPF_JMP_IMM(OP, DST, IMM, OFF) \
313 .dst_reg = DST, \
320 #define BPF_RAW_INSN(CODE, DST, SRC, OFF, IMM) \
323 .dst_reg = DST, \