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, \
159 #define BPF_JMP_REG(OP, DST, SRC, OFF) \ argument
161 .code = BPF_JMP | BPF_OP(OP) | BPF_X, \
169 #define BPF_JMP32_REG(OP, DST, SRC, OFF) \ argument
171 .code = BPF_JMP32 | BPF_OP(OP) | BPF_X, \
179 #define BPF_JMP_IMM(OP, DST, IMM, OFF) \ argument
181 .code = BPF_JMP | BPF_OP(OP) | BPF_K, \
189 #define BPF_JMP32_IMM(OP, DST, IMM, OFF) \ argument
191 .code = BPF_JMP32 | BPF_OP(OP) | BPF_K, \