Lines Matching refs:blk
254 } blk; member
258 %type <blk> expr id nid pid term rterm qid
259 %type <blk> head
263 %type <blk> and or paren not null prog
266 %type <blk> atmfield
267 %type <blk> atmfieldvalue atmvalue atmlistvalue
269 %type <blk> mtp3field
270 %type <blk> mtp3fieldvalue mtp3value mtp3listvalue
330 and: AND { $$ = $<blk>0; }
332 or: OR { $$ = $<blk>0; }
336 $$.q = $<blk>0.q); }
339 nid: ID { $$.b = gen_scode($1, $$.q = $<blk>0.q); }
341 $$.q = $<blk>0.q); }
343 $$.q = $<blk>0.q); }
346 $$.q = $<blk>0.q;
360 $$.q = $<blk>0.q);
369 $$.q = $<blk>0.q);
376 $$.b = gen_ecode($1, $$.q = $<blk>0.q);
385 $$.b = gen_acode($1, $$.q = $<blk>0.q);
395 not: '!' { $$ = $<blk>0; }
397 paren: '(' { $$ = $<blk>0; }
404 $$.q = $<blk>0.q); }
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;
690 | relop NUM { $$.b = gen_mtp3field_code($<blk>0.mtp3fieldtype, (u_int)$2, (u_int)$1, 0); }
691 | irelop NUM { $$.b = gen_mtp3field_code($<blk>0.mtp3fieldtype, (u_int)$2, (u_int)$1, 1); }
695 $$.mtp3fieldtype = $<blk>0.mtp3fieldtype;