Searched refs:no_reduce_set (Results 1 – 4 of 4) sorted by relevance
/external/bison/src/ |
D | graphviz.c | 87 no_reduce_bitset_init (state const *s, bitset *no_reduce_set) in no_reduce_bitset_init() argument 90 *no_reduce_set = bitset_create (ntokens, BITSET_FIXED); in no_reduce_bitset_init() 91 bitset_zero (*no_reduce_set); in no_reduce_bitset_init() 93 bitset_set (*no_reduce_set, TRANSITION_SYMBOL (s->transitions, n)); in no_reduce_bitset_init() 96 bitset_set (*no_reduce_set, s->errs->symbols[n]->number); in no_reduce_bitset_init() 158 bitset no_reduce_set; in output_red() local 169 no_reduce_bitset_init (s, &no_reduce_set); in output_red() 194 if (bitset_test (no_reduce_set, i)) in output_red() 200 bitset_set (no_reduce_set, i); in output_red() 211 bitset_free (no_reduce_set); in output_red()
|
D | print.c | 41 static bitset no_reduce_set; variable 255 bitset_zero (no_reduce_set); in print_reductions() 257 bitset_set (no_reduce_set, TRANSITION_SYMBOL (trans, i)); in print_reductions() 260 bitset_set (no_reduce_set, s->errs->symbols[i]->number); in print_reductions() 269 bool count = bitset_test (no_reduce_set, i); in print_reductions() 299 bool count = bitset_test (no_reduce_set, i); in print_reductions() 521 no_reduce_set = bitset_create (ntokens, BITSET_FIXED); in print_results() 524 bitset_free (no_reduce_set); in print_results()
|
D | print-xml.c | 42 static bitset no_reduce_set; variable 257 bitset_zero (no_reduce_set); in print_reductions() 259 bitset_set (no_reduce_set, TRANSITION_SYMBOL (trans, i)); in print_reductions() 262 bitset_set (no_reduce_set, s->errs->symbols[i]->number); in print_reductions() 270 bool count = bitset_test (no_reduce_set, i); in print_reductions() 301 bool count = bitset_test (no_reduce_set, i); in print_reductions() 520 no_reduce_set = bitset_create (ntokens, BITSET_FIXED); in print_xml() 529 bitset_free (no_reduce_set); in print_xml()
|
/external/bison/ |
D | ChangeLog-2012 | 4897 (no_reduce_set): ... this. 4899 tokens to no_reduce_set so that, when printing the first remaining
|