Home
last modified time | relevance | path

Searched refs:shift_set (Results 1 – 3 of 3) sorted by relevance

/external/bison/src/
Dprint.c42 static bitset shift_set; variable
227 bitset_zero (shift_set); in state_default_rule()
236 bitset_set (shift_set, TRANSITION_SYMBOL (trans, i)); in state_default_rule()
246 bitset_set (shift_set, errp->symbols[i]->number); in state_default_rule()
255 bitset_andn (look_ahead_set, reds->look_ahead_tokens[i], shift_set); in state_default_rule()
267 bitset_or (shift_set, shift_set, reds->look_ahead_tokens[i]); in state_default_rule()
319 bitset_zero (shift_set); in print_reductions()
321 bitset_set (shift_set, TRANSITION_SYMBOL (trans, i)); in print_reductions()
330 bool count = bitset_test (shift_set, i); in print_reductions()
360 bool count = bitset_test (shift_set, i); in print_reductions()
[all …]
Dconflicts.c45 static bitset shift_set; variable
312 shift_set = bitset_create (ntokens, BITSET_FIXED); in conflicts_solve()
346 bitset_zero (shift_set); in count_sr_conflicts()
349 bitset_set (shift_set, TRANSITION_SYMBOL (trans, i)); in count_sr_conflicts()
354 bitset_and (look_ahead_set, look_ahead_set, shift_set); in count_sr_conflicts()
532 bitset_free (shift_set); in conflicts_free()
/external/bison/
DChangeLog3775 * src/conflicts.c (shift_set): Renamed from shiftset.