Lines Matching refs:yystacksize
575 int yystacksize = YYINITDEPTH; in yyparse() local
621 if (yyssp >= yyss + yystacksize - 1) in yyparse()
644 &yystacksize); in yyparse()
649 &yystacksize); in yyparse()
658 if (yystacksize >= YYMAXDEPTH) in yyparse()
671 yystacksize *= 2; in yyparse()
672 if (yystacksize > YYMAXDEPTH) in yyparse()
673 yystacksize = YYMAXDEPTH; in yyparse()
677 yyss = (short *) YYSTACK_ALLOC (yystacksize * sizeof (*yyssp)); in yyparse()
680 yyvs = (YYSTYPE *) YYSTACK_ALLOC (yystacksize * sizeof (*yyvsp)); in yyparse()
684 yyls = (YYLTYPE *) YYSTACK_ALLOC (yystacksize * sizeof (*yylsp)); in yyparse()
698 fprintf(stderr, "Stack size increased to %d\n", yystacksize); in yyparse()
701 if (yyssp >= yyss + yystacksize - 1) in yyparse()