Lines Matching defs:yypath
355 /* yypath != NULL: do the full parse, starting at *yypath parser state. */
356 static YYParseState *yypath = NULL;
691 if (yypath)
700 save = yypath;
701 yypath = save->save;
1303 /* Reduction declares that this path is valid. Set yypath and do a full parse */
1305 if (yypath) YYABORT;
1310 save->save = yypath;
1311 yypath = save;
1316 YYDEBUGSTR, yydepth, yystate, yypath->state, (int)(yylvp - yylvals - yypath->lexeme));
1323 yylvp = yylvals + yypath->lexeme;
1325 yylpp = yylpsns + yypath->lexeme;
1327 yylexp = yylexemes + yypath->lexeme;
1329 yystack.s_mark = yystack.s_base + (yypath->yystack.s_mark - yypath->yystack.s_base);
1330 memcpy (yystack.s_base, yypath->yystack.s_base, (size_t) (yystack.s_mark - yystack.s_base + 1) * sizeof(YYINT));
1331 yystack.l_mark = yystack.l_base + (yypath->yystack.l_mark - yypath->yystack.l_base);
1332 memcpy (yystack.l_base, yypath->yystack.l_base, (size_t) (yystack.l_mark - yystack.l_base + 1) * sizeof(YYSTYPE));
1334 yystack.p_mark = yystack.p_base + (yypath->yystack.p_mark - yypath->yystack.p_base);
1335 memcpy (yystack.p_base, yypath->yystack.p_base, (size_t) (yystack.p_mark - yystack.p_base + 1) * sizeof(YYLTYPE));
1337 yystate = yypath->state;
1400 while (yypath)
1402 YYParseState *save = yypath;
1403 yypath = save->save;