Lines Matching defs:yypath
401 /* yypath != NULL: do the full parse, starting at *yypath parser state. */
402 static YYParseState *yypath = NULL;
747 if (yypath)
756 save = yypath;
757 yypath = save->save;
1353 /* Reduction declares that this path is valid. Set yypath and do a full parse */
1355 if (yypath) YYABORT;
1360 save->save = yypath;
1361 yypath = save;
1366 YYDEBUGSTR, yydepth, yystate, yypath->state, (int)(yylvp - yylvals - yypath->lexeme));
1373 yylvp = yylvals + yypath->lexeme;
1375 yylpp = yylpsns + yypath->lexeme;
1377 yylexp = yylexemes + yypath->lexeme;
1379 yystack.s_mark = yystack.s_base + (yypath->yystack.s_mark - yypath->yystack.s_base);
1380 memcpy (yystack.s_base, yypath->yystack.s_base, (size_t) (yystack.s_mark - yystack.s_base + 1) * sizeof(YYINT));
1381 yystack.l_mark = yystack.l_base + (yypath->yystack.l_mark - yypath->yystack.l_base);
1382 memcpy (yystack.l_base, yypath->yystack.l_base, (size_t) (yystack.l_mark - yystack.l_base + 1) * sizeof(YYSTYPE));
1384 yystack.p_mark = yystack.p_base + (yypath->yystack.p_mark - yypath->yystack.p_base);
1385 memcpy (yystack.p_base, yypath->yystack.p_base, (size_t) (yystack.p_mark - yystack.p_base + 1) * sizeof(YYLTYPE));
1387 yystate = yypath->state;
1450 while (yypath)
1452 YYParseState *save = yypath;
1453 yypath = save->save;