Lines Matching refs:OP
23 #define BPF_ALU64_REG(OP, DST, SRC) \ argument
25 .code = BPF_ALU64 | BPF_OP(OP) | BPF_X, \
31 #define BPF_ALU32_REG(OP, DST, SRC) \ argument
33 .code = BPF_ALU | BPF_OP(OP) | BPF_X, \
41 #define BPF_ALU64_IMM(OP, DST, IMM) \ argument
43 .code = BPF_ALU64 | BPF_OP(OP) | BPF_K, \
49 #define BPF_ALU32_IMM(OP, DST, IMM) \ argument
51 .code = BPF_ALU | BPF_OP(OP) | BPF_K, \
146 #define BPF_JMP_REG(OP, DST, SRC, OFF) \ argument
148 .code = BPF_JMP | BPF_OP(OP) | BPF_X, \
156 #define BPF_JMP_IMM(OP, DST, IMM, OFF) \ argument
158 .code = BPF_JMP | BPF_OP(OP) | BPF_K, \