Searched defs:arth (Results 1 - 2 of 2) sorted by relevance

/external/libpcap/
H A Dgrammar.y277 struct arth *a;
290 %type <a> arth narth
449 | arth relop arth { $$.b = gen_relation(cstate, $2, $1, $3, 0);
451 | arth irelop arth { $$.b = gen_relation(cstate, $2, $1, $3, 1);
669 arth: pnum { $$ = gen_loadi(cstate, $1); } label
672 narth: pname '[' arth ']' { $$ = gen_load(cstate, $1, $3, 1); }
673 | pname '[' arth ':' NUM ']' { $$ = gen_load(cstate, $1, $3, $5); }
674 | arth '
[all...]
H A Dgencode.h271 struct arth { struct
288 struct arth *gen_loadi(compiler_state_t *, int);
289 struct arth *gen_load(compiler_state_t *, int, struct arth *, int);
290 struct arth *gen_loadlen(compiler_state_t *);
291 struct arth *gen_neg(compiler_state_t *, struct arth *);
292 struct arth *gen_arth(compiler_state_t *, int, struct arth *, struct arth *);
[all...]

Completed in 275 milliseconds