Home | History | Annotate | Download | only in seccomp-bpf

Lines Matching full:instruction

15 // code     -- Opcode of the instruction. This is typically a bitwise
26 struct Instruction {
27 // Constructor for an non-jumping instruction or for an unconditional
29 Instruction(uint16_t c, uint32_t parm, Instruction* n)
32 // Constructor for a conditional jump instruction.
33 Instruction(uint16_t c, uint32_t parm, Instruction* jt, Instruction* jf)
49 Instruction* jt_ptr, *jf_ptr;
55 Instruction* next;