Searched refs:yystack (Results 1 – 2 of 2) sorted by relevance
606 static YYSTACKDATA yystack; variable820 memset(&yystack, 0, sizeof(yystack)); in YYPARSE_DECL()823 if (yystack.s_base == NULL && yygrowstack(&yystack) == YYENOMEM) goto yyoverflow; in YYPARSE_DECL()824 yystack.s_mark = yystack.s_base; in YYPARSE_DECL()825 yystack.l_mark = yystack.l_base; in YYPARSE_DECL()827 *yystack.s_mark = 0; in YYPARSE_DECL()851 if (yystack.s_mark >= yystack.s_last && yygrowstack(&yystack) == YYENOMEM) in YYPARSE_DECL()856 *++yystack.s_mark = yytable[yyn]; in YYPARSE_DECL()857 *++yystack.l_mark = yylval; in YYPARSE_DECL()883 if ((yyn = yysindex[*yystack.s_mark]) && (yyn += YYERRCODE) >= 0 && in YYPARSE_DECL()[all …]
172409 yyStackEntry *yystack; /* The parser's stack */172412 yyStackEntry yystack[YYSTACKDEPTH]; /* The parser's stack */173201 idx = p->yytos ? (int)(p->yytos - p->yystack) : 0;173202 if( p->yystack==&p->yystk0 ){173206 pNew = realloc(p->yystack, newSize*sizeof(pNew[0]));173209 p->yystack = pNew;173210 p->yytos = &p->yystack[idx];173242 yypParser->yystack = NULL;173245 yypParser->yystack = &yypParser->yystk0;173252 yypParser->yytos = yypParser->yystack;[all …]