Lines Matching refs:OP
26 #define BPF_ALU64_REG(OP, DST, SRC) \ argument
28 .code = BPF_ALU64 | BPF_OP(OP) | BPF_X, \
34 #define BPF_ALU32_REG(OP, DST, SRC) \ argument
36 .code = BPF_ALU | BPF_OP(OP) | BPF_X, \
44 #define BPF_ALU64_IMM(OP, DST, IMM) \ argument
46 .code = BPF_ALU64 | BPF_OP(OP) | BPF_K, \
52 #define BPF_ALU32_IMM(OP, DST, IMM) \ argument
54 .code = BPF_ALU | BPF_OP(OP) | BPF_K, \
157 #define BPF_JMP_REG(OP, DST, SRC, OFF) \ argument
159 .code = BPF_JMP | BPF_OP(OP) | BPF_X, \
167 #define BPF_JMP_IMM(OP, DST, IMM, OFF) \ argument
169 .code = BPF_JMP | BPF_OP(OP) | BPF_K, \