HomeSort by relevance Sort by last modified time
    Searched refs:gen_arth (Results 1 - 4 of 4) sorted by null

  /external/libpcap/
grammar.y 674 | arth '+' arth { $$ = gen_arth(cstate, BPF_ADD, $1, $3); }
675 | arth '-' arth { $$ = gen_arth(cstate, BPF_SUB, $1, $3); }
676 | arth '*' arth { $$ = gen_arth(cstate, BPF_MUL, $1, $3); }
677 | arth '/' arth { $$ = gen_arth(cstate, BPF_DIV, $1, $3); }
678 | arth '%' arth { $$ = gen_arth(cstate, BPF_MOD, $1, $3); }
679 | arth '&' arth { $$ = gen_arth(cstate, BPF_AND, $1, $3); }
680 | arth '|' arth { $$ = gen_arth(cstate, BPF_OR, $1, $3); }
681 | arth '^' arth { $$ = gen_arth(cstate, BPF_XOR, $1, $3); }
682 | arth LSH arth { $$ = gen_arth(cstate, BPF_LSH, $1, $3); }
683 | arth RSH arth { $$ = gen_arth(cstate, BPF_RSH, $1, $3);
    [all...]
grammar.c     [all...]
gencode.h 292 struct arth *gen_arth(compiler_state_t *, int, struct arth *, struct arth *);
gencode.c 7116 gen_arth(compiler_state_t *cstate, int code, struct arth *a0, function
    [all...]

Completed in 250 milliseconds