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

  /external/libpcap/
grammar.y 421 | arth '+' arth { $$ = gen_arth(BPF_ADD, $1, $3); }
422 | arth '-' arth { $$ = gen_arth(BPF_SUB, $1, $3); }
423 | arth '*' arth { $$ = gen_arth(BPF_MUL, $1, $3); }
424 | arth '/' arth { $$ = gen_arth(BPF_DIV, $1, $3); }
425 | arth '&' arth { $$ = gen_arth(BPF_AND, $1, $3); }
426 | arth '|' arth { $$ = gen_arth(BPF_OR, $1, $3); }
427 | arth LSH arth { $$ = gen_arth(BPF_LSH, $1, $3); }
428 | arth RSH arth { $$ = gen_arth(BPF_RSH, $1, $3); }
gencode.h 271 struct arth *gen_arth(int, struct arth *, struct arth *);
gencode.c 5911 gen_arth(code, a0, a1) function
    [all...]

Completed in 664 milliseconds