Lines Matching refs:temp
100 action *actions, *temp; in get_shifts() local
117 temp = NEW(action); in get_shifts()
118 temp->next = actions; in get_shifts()
119 temp->symbol = symbol; in get_shifts()
120 temp->number = k; in get_shifts()
121 temp->prec = symbol_prec[symbol]; in get_shifts()
122 temp->action_code = SHIFT; in get_shifts()
123 temp->assoc = symbol_assoc[symbol]; in get_shifts()
124 actions = temp; in get_shifts()
158 action *temp, *prev, *next; in add_reduce() local
177 temp = NEW(action); in add_reduce()
178 temp->next = next; in add_reduce()
179 temp->symbol = symbol; in add_reduce()
180 temp->number = ruleno; in add_reduce()
181 temp->prec = rprec[ruleno]; in add_reduce()
182 temp->action_code = REDUCE; in add_reduce()
183 temp->assoc = rassoc[ruleno]; in add_reduce()
186 prev->next = temp; in add_reduce()
188 actions = temp; in add_reduce()