Lines Matching defs:yypath
641 /* yypath != NULL: do the full parse, starting at *yypath parser state. */
642 static YYParseState *yypath = NULL;
811 if (yypath)
820 save = yypath;
821 yypath = save->save;
1423 /* Reduction declares that this path is valid. Set yypath and do a full parse */
1425 if (yypath) YYABORT;
1430 save->save = yypath;
1431 yypath = save;
1436 YYDEBUGSTR, yydepth, yystate, yypath->state, (int)(yylvp - yylvals - yypath->lexeme));
1443 yylvp = yylvals + yypath->lexeme;
1445 yylpp = yylpsns + yypath->lexeme;
1447 yylexp = yylexemes + yypath->lexeme;
1449 yystack.s_mark = yystack.s_base + (yypath->yystack.s_mark - yypath->yystack.s_base);
1450 memcpy (yystack.s_base, yypath->yystack.s_base, (size_t) (yystack.s_mark - yystack.s_base + 1) * sizeof(YYINT));
1451 yystack.l_mark = yystack.l_base + (yypath->yystack.l_mark - yypath->yystack.l_base);
1452 memcpy (yystack.l_base, yypath->yystack.l_base, (size_t) (yystack.l_mark - yystack.l_base + 1) * sizeof(YYSTYPE));
1454 yystack.p_mark = yystack.p_base + (yypath->yystack.p_mark - yypath->yystack.p_base);
1455 memcpy (yystack.p_base, yypath->yystack.p_base, (size_t) (yystack.p_mark - yystack.p_base + 1) * sizeof(YYLTYPE));
1457 yystate = yypath->state;
1520 while (yypath)
1522 YYParseState *save = yypath;
1523 yypath = save->save;