Lines Matching defs:ys
1127 struct yyrecursive_state *ys;
1138 ys = alloc(sizeof(struct yyrecursive_state), ATEMP);
1141 ys->old_nesting_type = subshell_nesting_type;
1145 ys->old_reject = reject;
1146 ys->old_symbol = symbol;
1148 memcpy(ys->old_heres, heres, sizeof(heres));
1149 ys->old_herep = herep;
1151 ys->next = e->yyrecursive_statep;
1152 e->yyrecursive_statep = ys;
1167 struct yyrecursive_state *ys;
1170 if (!(ys = e->yyrecursive_statep))
1172 e->yyrecursive_statep = ys->next;
1174 memcpy(heres, ys->old_heres, sizeof(heres));
1175 herep = ys->old_herep;
1176 reject = ys->old_reject;
1177 symbol = ys->old_symbol;
1179 subshell_nesting_type = ys->old_nesting_type;
1181 afree(ys, ATEMP);