Lines Matching defs:yypath
456 /* yypath != NULL: do the full parse, starting at *yypath parser state. */
457 static YYParseState *yypath = NULL;
792 if (yypath)
801 save = yypath;
802 yypath = save->save;
1404 /* Reduction declares that this path is valid. Set yypath and do a full parse */
1406 if (yypath) YYABORT;
1411 save->save = yypath;
1412 yypath = save;
1417 YYDEBUGSTR, yydepth, yystate, yypath->state, (int)(yylvp - yylvals - yypath->lexeme));
1424 yylvp = yylvals + yypath->lexeme;
1426 yylpp = yylpsns + yypath->lexeme;
1428 yylexp = yylexemes + yypath->lexeme;
1430 yystack.s_mark = yystack.s_base + (yypath->yystack.s_mark - yypath->yystack.s_base);
1431 memcpy (yystack.s_base, yypath->yystack.s_base, (size_t) (yystack.s_mark - yystack.s_base + 1) * sizeof(YYINT));
1432 yystack.l_mark = yystack.l_base + (yypath->yystack.l_mark - yypath->yystack.l_base);
1433 memcpy (yystack.l_base, yypath->yystack.l_base, (size_t) (yystack.l_mark - yystack.l_base + 1) * sizeof(YYSTYPE));
1435 yystack.p_mark = yystack.p_base + (yypath->yystack.p_mark - yypath->yystack.p_base);
1436 memcpy (yystack.p_base, yypath->yystack.p_base, (size_t) (yystack.p_mark - yystack.p_base + 1) * sizeof(YYLTYPE));
1438 yystate = yypath->state;
1501 while (yypath)
1503 YYParseState *save = yypath;
1504 yypath = save->save;