Lines Matching refs:OP
50 #define BPF_ALU64_REG(OP, DST, SRC) \ argument
52 .code = BPF_ALU64 | BPF_OP(OP) | BPF_X, \
58 #define BPF_ALU32_REG(OP, DST, SRC) \ argument
60 .code = BPF_ALU | BPF_OP(OP) | BPF_X, \
68 #define BPF_ALU64_IMM(OP, DST, IMM) \ argument
70 .code = BPF_ALU64 | BPF_OP(OP) | BPF_K, \
76 #define BPF_ALU32_IMM(OP, DST, IMM) \ argument
78 .code = BPF_ALU | BPF_OP(OP) | BPF_K, \
224 #define BPF_JMP_REG(OP, DST, SRC, OFF) \ argument
226 .code = BPF_JMP | BPF_OP(OP) | BPF_X, \
234 #define BPF_JMP_IMM(OP, DST, IMM, OFF) \ argument
236 .code = BPF_JMP | BPF_OP(OP) | BPF_K, \