Searched refs:gen_arth (Results 1 - 3 of 3) sorted by relevance

/freebsd-10.3-release/contrib/libpcap/
H A Dgrammar.y616 | arth '+' arth { $$ = gen_arth(BPF_ADD, $1, $3); }
617 | arth '-' arth { $$ = gen_arth(BPF_SUB, $1, $3); }
618 | arth '*' arth { $$ = gen_arth(BPF_MUL, $1, $3); }
619 | arth '/' arth { $$ = gen_arth(BPF_DIV, $1, $3); }
620 | arth '&' arth { $$ = gen_arth(BPF_AND, $1, $3); }
621 | arth '|' arth { $$ = gen_arth(BPF_OR, $1, $3); }
622 | arth LSH arth { $$ = gen_arth(BPF_LSH, $1, $3); }
623 | arth RSH arth { $$ = gen_arth(BPF_RSH, $1, $3); }
H A Dgencode.h279 struct arth *gen_arth(int, struct arth *, struct arth *);
H A Dgencode.c6986 gen_arth(code, a0, a1) function

Completed in 160 milliseconds