OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:arth
(Results
1 - 2
of
2
) sorted by null
/external/libpcap/
grammar.y
262
struct
arth
*a;
275
%type <a>
arth
narth
434
|
arth
relop
arth
{ $$.b = gen_relation($2, $1, $3, 0);
436
|
arth
irelop
arth
{ $$.b = gen_relation($2, $1, $3, 1);
654
arth
: pnum { $$ = gen_loadi($1); }
label
657
narth: pname '['
arth
']' { $$ = gen_load($1, $3, 1); }
658
| pname '['
arth
':' NUM ']' { $$ = gen_load($1, $3, $5); }
659
|
arth
'+' arth { $$ = gen_arth(BPF_ADD, $1, $3);
[
all
...]
gencode.h
271
struct
arth
{
struct
284
struct
arth
*gen_loadi(int);
285
struct
arth
*gen_load(int, struct
arth
*, int);
286
struct
arth
*gen_loadlen(void);
287
struct
arth
*gen_neg(struct
arth
*);
288
struct
arth
*gen_arth(int, struct
arth
*, struct
arth
*);
[
all
...]
Completed in 50 milliseconds