Searched refs:atmfieldtype (Results 1 – 3 of 3) sorted by relevance
/external/libpcap/ |
D | grammar.y | 251 int atmfieldtype; member 653 atmfield: VPI { $$.atmfieldtype = A_VPI; } 654 | VCI { $$.atmfieldtype = A_VCI; } 657 | relop NUM { $$.b = gen_atmfield_code($<blk>0.atmfieldtype, (bpf_int32)$2, (bpf_u_int32)$1, 0); } 658 …| irelop NUM { $$.b = gen_atmfield_code($<blk>0.atmfieldtype, (bpf_int32)$2, (bpf_u_int32)$1, 1);… 662 $$.atmfieldtype = $<blk>0.atmfieldtype; 663 if ($$.atmfieldtype == A_VPI || 664 $$.atmfieldtype == A_VCI) 665 $$.b = gen_atmfield_code($$.atmfieldtype, (bpf_int32) $1, BPF_JEQ, 0);
|
D | grammar.c | 605 int atmfieldtype; member 3546 { (yyval.blk).atmfieldtype = A_VPI; } 3553 { (yyval.blk).atmfieldtype = A_VCI; } 3560 …{ (yyval.blk).b = gen_atmfield_code((yyvsp[(0) - (2)].blk).atmfieldtype, (bpf_int32)(yyvsp[(2) - (… 3567 …{ (yyval.blk).b = gen_atmfield_code((yyvsp[(0) - (2)].blk).atmfieldtype, (bpf_int32)(yyvsp[(2) - (… 3582 (yyval.blk).atmfieldtype = (yyvsp[(0) - (1)].blk).atmfieldtype; 3583 if ((yyval.blk).atmfieldtype == A_VPI || 3584 (yyval.blk).atmfieldtype == A_VCI) 3585 …(yyval.blk).b = gen_atmfield_code((yyval.blk).atmfieldtype, (bpf_int32) (yyvsp[(1) - (1)].i), BPF_…
|
D | tokdefs.h | 298 int atmfieldtype; member
|