Home | History | Annotate | Download | only in btyacc

Lines Matching defs:yypath

503 /* yypath != NULL: do the full parse, starting at *yypath parser state. */
504 static YYParseState *yypath = NULL;
928 if (yypath)
937 save = yypath;
938 yypath = save->save;
1653 /* Reduction declares that this path is valid. Set yypath and do a full parse */
1655 if (yypath) YYABORT;
1660 save->save = yypath;
1661 yypath = save;
1666 YYDEBUGSTR, yydepth, yystate, yypath->state, (int)(yylvp - yylvals - yypath->lexeme));
1673 yylvp = yylvals + yypath->lexeme;
1675 yylpp = yylpsns + yypath->lexeme;
1677 yylexp = yylexemes + yypath->lexeme;
1679 yystack.s_mark = yystack.s_base + (yypath->yystack.s_mark - yypath->yystack.s_base);
1680 memcpy (yystack.s_base, yypath->yystack.s_base, (size_t) (yystack.s_mark - yystack.s_base + 1) * sizeof(YYINT));
1681 yystack.l_mark = yystack.l_base + (yypath->yystack.l_mark - yypath->yystack.l_base);
1682 memcpy (yystack.l_base, yypath->yystack.l_base, (size_t) (yystack.l_mark - yystack.l_base + 1) * sizeof(YYSTYPE));
1684 yystack.p_mark = yystack.p_base + (yypath->yystack.p_mark - yypath->yystack.p_base);
1685 memcpy (yystack.p_base, yypath->yystack.p_base, (size_t) (yystack.p_mark - yystack.p_base + 1) * sizeof(YYLTYPE));
1687 yystate = yypath->state;
1750 while (yypath)
1752 YYParseState *save = yypath;
1753 yypath = save->save;