Lines Matching refs:blk
283 } blk; member
287 %type <blk> expr id nid pid term rterm qid
288 %type <blk> head
292 %type <blk> and or paren not null prog
295 %type <blk> atmfield
296 %type <blk> atmfieldvalue atmvalue atmlistvalue
298 %type <blk> mtp3field
299 %type <blk> mtp3fieldvalue mtp3value mtp3listvalue
359 and: AND { $$ = $<blk>0; }
361 or: OR { $$ = $<blk>0; }
365 $$.q = $<blk>0.q); }
368 nid: ID { $$.b = gen_scode(cstate, $1, $$.q = $<blk>0.q); }
370 $$.q = $<blk>0.q); }
372 $$.q = $<blk>0.q); }
375 $$.q = $<blk>0.q;
389 $$.q = $<blk>0.q);
398 $$.q = $<blk>0.q);
405 $$.b = gen_ecode(cstate, $1, $$.q = $<blk>0.q);
414 $$.b = gen_acode(cstate, $1, $$.q = $<blk>0.q);
424 not: '!' { $$ = $<blk>0; }
426 paren: '(' { $$ = $<blk>0; }
433 $$.q = $<blk>0.q); }
715 …| relop NUM { $$.b = gen_atmfield_code(cstate, $<blk>0.atmfieldtype, (bpf_int32)$2, (bpf_u_int32)…
716 …| irelop NUM { $$.b = gen_atmfield_code(cstate, $<blk>0.atmfieldtype, (bpf_int32)$2, (bpf_u_int32…
720 $$.atmfieldtype = $<blk>0.atmfieldtype;
748 | relop NUM { $$.b = gen_mtp3field_code(cstate, $<blk>0.mtp3fieldtype, (u_int)$2, (u_int)$1, 0); }
749 …| irelop NUM { $$.b = gen_mtp3field_code(cstate, $<blk>0.mtp3fieldtype, (u_int)$2, (u_int)$1, 1);…
753 $$.mtp3fieldtype = $<blk>0.mtp3fieldtype;