Searched refs:from_state (Results 1 – 5 of 5) sorted by relevance
| /openbsd/src/usr.bin/yacc/ |
| D | lalr.c | 52 short *from_state; variable 241 from_state = NEW2(ngotos, short); in set_goto_map() 253 from_state[k] = state1; in set_goto_map() 276 s = from_state[middle]; in map_goto() 366 state1 = from_state[i]; in build_relations()
|
| D | defs.h | 283 extern short *from_state;
|
| D | output.c | 262 free(from_state); in output_actions() 442 *sp1++ = from_state[i]; in save_column()
|
| /openbsd/src/gnu/usr.bin/gcc/gcc/ |
| D | genautomata.c | 4187 remove_arc (from_state, arc) in remove_arc() argument 4188 state_t from_state; in remove_arc() 4196 for (prev_arc = NULL, curr_arc = from_state->first_out_arc; 4204 from_state->first_out_arc = arc->next_out_arc; 4213 find_arc (from_state, to_state, insn) in find_arc() argument 4214 state_t from_state; in find_arc() 4220 for (arc = first_out_arc (from_state); arc != NULL; arc = next_out_arc (arc)) 4230 add_arc (from_state, to_state, ainsn, state_alts) in add_arc() argument 4231 state_t from_state; in add_arc() 4238 new_arc = find_arc (from_state, to_state, ainsn); [all …]
|
| /openbsd/src/gnu/gcc/gcc/ |
| D | genautomata.c | 3851 remove_arc (state_t from_state, arc_t arc) in remove_arc() argument 3857 for (prev_arc = NULL, curr_arc = from_state->first_out_arc; in remove_arc() 3864 from_state->first_out_arc = arc->next_out_arc; in remove_arc() 3867 from_state->num_out_arcs--; in remove_arc() 3874 find_arc (state_t from_state, state_t to_state, ainsn_t insn) in find_arc() argument 3878 for (arc = first_out_arc (from_state); arc != NULL; arc = next_out_arc (arc)) in find_arc() 3887 add_arc (state_t from_state, state_t to_state, ainsn_t ainsn) in add_arc() argument 3891 new_arc = find_arc (from_state, to_state, ainsn); in add_arc() 3912 new_arc->next_out_arc = from_state->first_out_arc; in add_arc() 3913 from_state->first_out_arc = new_arc; in add_arc() [all …]
|