Lines Matching refs:OP
10 #define BPF_ALU64_REG(OP, DST, SRC) \ argument
12 .code = BPF_ALU64 | BPF_OP(OP) | BPF_X, \
18 #define BPF_ALU32_REG(OP, DST, SRC) \ argument
20 .code = BPF_ALU | BPF_OP(OP) | BPF_X, \
28 #define BPF_ALU64_IMM(OP, DST, IMM) \ argument
30 .code = BPF_ALU64 | BPF_OP(OP) | BPF_K, \
36 #define BPF_ALU32_IMM(OP, DST, IMM) \ argument
38 .code = BPF_ALU | BPF_OP(OP) | BPF_K, \
152 #define BPF_ATOMIC_OP(SIZE, OP, DST, SRC, OFF) \ argument
158 .imm = OP })
175 #define BPF_JMP_REG(OP, DST, SRC, OFF) \ argument
177 .code = BPF_JMP | BPF_OP(OP) | BPF_X, \
185 #define BPF_JMP32_REG(OP, DST, SRC, OFF) \ argument
187 .code = BPF_JMP32 | BPF_OP(OP) | BPF_X, \
195 #define BPF_JMP_IMM(OP, DST, IMM, OFF) \ argument
197 .code = BPF_JMP | BPF_OP(OP) | BPF_K, \
205 #define BPF_JMP32_IMM(OP, DST, IMM, OFF) \ argument
207 .code = BPF_JMP32 | BPF_OP(OP) | BPF_K, \