Searched refs:OP (Results 1 – 1 of 1) sorted by relevance
/samples/bpf/ |
D | bpf_insn.h | 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 }) [all …]
|