Home | History | Annotate | Download | only in btyacc

Lines Matching defs:yypath

194 /* yypath != NULL: do the full parse, starting at *yypath parser state. */
195 static YYParseState *yypath = NULL;
514 if (yypath)
523 save = yypath;
524 yypath = save->save;
1050 /* Reduction declares that this path is valid. Set yypath and do a full parse */
1052 if (yypath) YYABORT;
1057 save->save = yypath;
1058 yypath = save;
1063 YYDEBUGSTR, yydepth, yystate, yypath->state, (int)(yylvp - yylvals - yypath->lexeme));
1070 yylvp = yylvals + yypath->lexeme;
1072 yylpp = yylpsns + yypath->lexeme;
1074 yylexp = yylexemes + yypath->lexeme;
1076 yystack.s_mark = yystack.s_base + (yypath->yystack.s_mark - yypath->yystack.s_base);
1077 memcpy (yystack.s_base, yypath->yystack.s_base, (size_t) (yystack.s_mark - yystack.s_base + 1) * sizeof(YYINT));
1078 yystack.l_mark = yystack.l_base + (yypath->yystack.l_mark - yypath->yystack.l_base);
1079 memcpy (yystack.l_base, yypath->yystack.l_base, (size_t) (yystack.l_mark - yystack.l_base + 1) * sizeof(YYSTYPE));
1081 yystack.p_mark = yystack.p_base + (yypath->yystack.p_mark - yypath->yystack.p_base);
1082 memcpy (yystack.p_base, yypath->yystack.p_base, (size_t) (yystack.p_mark - yystack.p_base + 1) * sizeof(YYLTYPE));
1084 yystate = yypath->state;
1147 while (yypath)
1149 YYParseState *save = yypath;
1150 yypath = save->save;