Lines Matching refs:code
347 static inline struct block *new_block(code) in new_block() argument
348 int code; in new_block()
353 p->s.code = code;
359 static inline struct slist *new_stmt(code) in new_stmt() argument
360 int code; in new_stmt()
365 p->s.code = code;
434 if (root == NULL || (root->s.code == (BPF_RET | BPF_K) && root->s.k == 0)) in pcap_compile()
6776 struct block *gen_relation(code, a0, a1, reversed) in gen_relation() argument
6777 int code; in gen_relation()
6786 if (code == BPF_JEQ)
6789 b = new_block(JMP(code));
6793 b = new_block(BPF_JMP | code | BPF_X);
6878 struct arth *gen_arth(code, a0, a1) in gen_arth() argument
6879 int code; in gen_arth()
6886 s2 = new_stmt(BPF_ALU | BPF_X | code);