Searched defs:old_to_new (Results 1 - 4 of 4) sorted by relevance

/external/bison/src/
H A Dmain.c130 state_number *old_to_new = xnmalloc (nstates, sizeof *old_to_new); local
132 state_remove_unreachable_states (old_to_new);
133 lalr_update_state_numbers (old_to_new, nstates_old);
134 conflicts_update_state_numbers (old_to_new, nstates_old);
135 free (old_to_new);
H A Dconflicts.c413 conflicts_update_state_numbers (state_number old_to_new[],
418 if (old_to_new[i] != nstates_old)
419 conflicts[old_to_new[i]] = conflicts[i];
412 conflicts_update_state_numbers(state_number old_to_new[], state_number nstates_old) argument
H A Dlalr.c461 lalr_update_state_numbers (state_number old_to_new[], state_number nstates_old) argument
472 /* If old_to_new[from_state[i]] = nstates_old, remove this goto
474 if (old_to_new[from_state[i]] != nstates_old)
478 aver (old_to_new[to_state[i]] != nstates_old);
479 from_state[ngotos_reachable] = old_to_new[from_state[i]];
480 to_state[ngotos_reachable] = old_to_new[to_state[i]];
H A Dstate.c425 state_remove_unreachable_states (state_number old_to_new[]) argument
438 old_to_new[i] = nstates_reachable++;
443 old_to_new[i] = nstates;

Completed in 237 milliseconds