Lines Matching defs:yypath
448 /* yypath != NULL: do the full parse, starting at *yypath parser state. */
449 static YYParseState *yypath = NULL;
784 if (yypath)
793 save = yypath;
794 yypath = save->save;
1396 /* Reduction declares that this path is valid. Set yypath and do a full parse */
1398 if (yypath) YYABORT;
1403 save->save = yypath;
1404 yypath = save;
1409 YYDEBUGSTR, yydepth, yystate, yypath->state, (int)(yylvp - yylvals - yypath->lexeme));
1416 yylvp = yylvals + yypath->lexeme;
1418 yylpp = yylpsns + yypath->lexeme;
1420 yylexp = yylexemes + yypath->lexeme;
1422 yystack.s_mark = yystack.s_base + (yypath->yystack.s_mark - yypath->yystack.s_base);
1423 memcpy (yystack.s_base, yypath->yystack.s_base, (size_t) (yystack.s_mark - yystack.s_base + 1) * sizeof(YYINT));
1424 yystack.l_mark = yystack.l_base + (yypath->yystack.l_mark - yypath->yystack.l_base);
1425 memcpy (yystack.l_base, yypath->yystack.l_base, (size_t) (yystack.l_mark - yystack.l_base + 1) * sizeof(YYSTYPE));
1427 yystack.p_mark = yystack.p_base + (yypath->yystack.p_mark - yypath->yystack.p_base);
1428 memcpy (yystack.p_base, yypath->yystack.p_base, (size_t) (yystack.p_mark - yystack.p_base + 1) * sizeof(YYLTYPE));
1430 yystate = yypath->state;
1493 while (yypath)
1495 YYParseState *save = yypath;
1496 yypath = save->save;