Home | History | Annotate | Download | only in include

Lines Matching refs:code

2  * bpf_util.h	BPF common code
72 .code = BPF_ALU64 | BPF_OP(OP) | BPF_X, \
80 .code = BPF_ALU | BPF_OP(OP) | BPF_X, \
90 .code = BPF_ALU64 | BPF_OP(OP) | BPF_K, \
98 .code = BPF_ALU | BPF_OP(OP) | BPF_K, \
108 .code = BPF_ALU64 | BPF_MOV | BPF_X, \
116 .code = BPF_ALU | BPF_MOV | BPF_X, \
126 .code = BPF_ALU64 | BPF_MOV | BPF_K, \
134 .code = BPF_ALU | BPF_MOV | BPF_K, \
146 .code = BPF_LD | BPF_DW | BPF_IMM, \
152 .code = 0, /* zero is reserved opcode */ \
171 .code = BPF_LD | BPF_SIZE(SIZE) | BPF_ABS, \
181 .code = BPF_LDX | BPF_SIZE(SIZE) | BPF_MEM, \
191 .code = BPF_STX | BPF_SIZE(SIZE) | BPF_MEM, \
201 .code = BPF_ST | BPF_SIZE(SIZE) | BPF_MEM, \
211 .code = BPF_JMP | BPF_OP(OP) | BPF_X, \
221 .code = BPF_JMP | BPF_OP(OP) | BPF_K, \
227 /* Raw code statement block */
229 #define BPF_RAW_INSN(CODE, DST, SRC, OFF, IMM) \
231 .code = CODE, \
241 .code = BPF_JMP | BPF_EXIT, \