OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:gen_arth
(Results
1 - 3
of
3
) sorted by relevancy
/src/external/bsd/libpcap/dist/
grammar.y.in
855
| arth '+' arth { CHECK_PTR_VAL(($$ =
gen_arth
(cstate, BPF_ADD, $1, $3))); }
856
| arth '-' arth { CHECK_PTR_VAL(($$ =
gen_arth
(cstate, BPF_SUB, $1, $3))); }
857
| arth '*' arth { CHECK_PTR_VAL(($$ =
gen_arth
(cstate, BPF_MUL, $1, $3))); }
858
| arth '/' arth { CHECK_PTR_VAL(($$ =
gen_arth
(cstate, BPF_DIV, $1, $3))); }
859
| arth '%' arth { CHECK_PTR_VAL(($$ =
gen_arth
(cstate, BPF_MOD, $1, $3))); }
860
| arth '&' arth { CHECK_PTR_VAL(($$ =
gen_arth
(cstate, BPF_AND, $1, $3))); }
861
| arth '|' arth { CHECK_PTR_VAL(($$ =
gen_arth
(cstate, BPF_OR, $1, $3))); }
862
| arth '^' arth { CHECK_PTR_VAL(($$ =
gen_arth
(cstate, BPF_XOR, $1, $3))); }
863
| arth LSH arth { CHECK_PTR_VAL(($$ =
gen_arth
(cstate, BPF_LSH, $1, $3))); }
864
| arth RSH arth { CHECK_PTR_VAL(($$ =
gen_arth
(cstate, BPF_RSH, $1, $3)));
[
all
...]
gencode.h
324
struct arth *
gen_arth
(compiler_state_t *, int, struct arth *, struct arth *);
gencode.c
8029
gen_arth
(compiler_state_t *cstate, int code, struct arth *a0_arg,
function
Completed in 36 milliseconds
Indexes created Tue Feb 24 01:34:59 UTC 2026