Home | History | Annotate | Download | only in btyacc

Lines Matching defs:yypath

335 /* yypath != NULL: do the full parse, starting at *yypath parser state. */
336 static YYParseState *yypath = NULL;
651 if (yypath)
660 save = yypath;
661 yypath = save->save;
1187 /* Reduction declares that this path is valid. Set yypath and do a full parse */
1189 if (yypath) YYABORT;
1194 save->save = yypath;
1195 yypath = save;
1200 YYDEBUGSTR, yydepth, yystate, yypath->state, (int)(yylvp - yylvals - yypath->lexeme));
1207 yylvp = yylvals + yypath->lexeme;
1209 yylpp = yylpsns + yypath->lexeme;
1211 yylexp = yylexemes + yypath->lexeme;
1213 yystack.s_mark = yystack.s_base + (yypath->yystack.s_mark - yypath->yystack.s_base);
1214 memcpy (yystack.s_base, yypath->yystack.s_base, (size_t) (yystack.s_mark - yystack.s_base + 1) * sizeof(YYINT));
1215 yystack.l_mark = yystack.l_base + (yypath->yystack.l_mark - yypath->yystack.l_base);
1216 memcpy (yystack.l_base, yypath->yystack.l_base, (size_t) (yystack.l_mark - yystack.l_base + 1) * sizeof(YYSTYPE));
1218 yystack.p_mark = yystack.p_base + (yypath->yystack.p_mark - yypath->yystack.p_base);
1219 memcpy (yystack.p_base, yypath->yystack.p_base, (size_t) (yystack.p_mark - yystack.p_base + 1) * sizeof(YYLTYPE));
1221 yystate = yypath->state;
1284 while (yypath)
1286 YYParseState *save = yypath;
1287 yypath = save->save;