Home
last modified time | relevance | path

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

/external/libpcap/
Dbpf_image.c164 case BPF_JMP|BPF_JGE|BPF_K:
184 case BPF_JMP|BPF_JGE|BPF_X:
Dbpf_filter.c426 case BPF_JMP|BPF_JGE|BPF_K:
442 case BPF_JMP|BPF_JGE|BPF_X:
668 case BPF_JGE:
Dgrammar.y605 | GEQ { $$ = BPF_JGE; }
609 | '<' { $$ = BPF_JGE; }
Dgrammar.c3287 { (yyval.i) = BPF_JGE; }
3308 { (yyval.i) = BPF_JGE; }
Dgencode.c664 return gen_ncmp(offrel, offset, size, 0xffffffff, BPF_JGE, 0, v);
673 return gen_ncmp(offrel, offset, size, 0xffffffff, BPF_JGE, 1, v);
761 if (reverse && (jtype == BPF_JGT || jtype == BPF_JGE))
7078 return gen_len(BPF_JGE, n);
Doptimize.c891 case BPF_JGE: in opt_peep()
/external/libpcap/bpf/net/
Dbpf_filter.c426 case BPF_JMP|BPF_JGE|BPF_K:
442 case BPF_JMP|BPF_JGE|BPF_X:
668 case BPF_JGE:
/external/kernel-headers/original/uapi/linux/
Dfilter.h79 #define BPF_JGE 0x30 macro
/external/libpcap/pcap/
Dbpf.h1290 #define BPF_JGE 0x30 macro
/external/chromium_org/sandbox/linux/seccomp-bpf/
Dverifier.cc219 case BPF_JGE: in Jmp()
Dcodegen.cc104 BPF_OP(iter->code) == BPF_JGE ? ">=" : in PrintProgram()
Dsandbox_bpf.cc884 return gen->MakeInstruction(BPF_JMP + BPF_JGE + BPF_K, mid->from, jt, jf); in AssembleJumpTable()