Home
last modified time | relevance | path

Searched refs:gen_load (Results 1 – 4 of 4) sorted by relevance

/external/libpcap/
Dgencode.h303 struct arth *gen_load(compiler_state_t *, int, struct arth *, bpf_u_int32);
Dgrammar.y.in747 narth: pname '[' arth ']' { CHECK_PTR_VAL(($$ = gen_load(cstate, $1, $3, 1))); }
748 | pname '[' arth ':' NUM ']' { CHECK_PTR_VAL(($$ = gen_load(cstate, $1, $3, $5))); }
Dgrammar.c3186 … { CHECK_PTR_VAL(((yyval.a) = gen_load(cstate, (yyvsp[-3].i), (yyvsp[-1].a), 1))); } in yyparse()
3192 … { CHECK_PTR_VAL(((yyval.a) = gen_load(cstate, (yyvsp[-5].i), (yyvsp[-3].a), (yyvsp[-1].i)))); } in yyparse()
Dgencode.c7549 gen_load(compiler_state_t *cstate, int proto, struct arth *inst, in gen_load() function