Home
last modified time | relevance | path

Searched refs:OP (Results 1 – 1 of 1) sorted by relevance

/samples/bpf/
Dlibbpf.h26 #define BPF_ALU64_REG(OP, DST, SRC) \ argument
28 .code = BPF_ALU64 | BPF_OP(OP) | BPF_X, \
34 #define BPF_ALU32_REG(OP, DST, SRC) \ argument
36 .code = BPF_ALU | BPF_OP(OP) | BPF_X, \
44 #define BPF_ALU64_IMM(OP, DST, IMM) \ argument
46 .code = BPF_ALU64 | BPF_OP(OP) | BPF_K, \
52 #define BPF_ALU32_IMM(OP, DST, IMM) \ argument
54 .code = BPF_ALU | BPF_OP(OP) | BPF_K, \
157 #define BPF_JMP_REG(OP, DST, SRC, OFF) \ argument
159 .code = BPF_JMP | BPF_OP(OP) | BPF_X, \
[all …]