亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? plural.c

?? 研讀AxCrypt對加解密的處理方法
?? C
?? 第 1 頁 / 共 3 頁
字號:

/* YYLEX -- calling `yylex' with the right arguments.  */

#if YYPURE
# if YYLSP_NEEDED
#  ifdef YYLEX_PARAM
#   define YYLEX		yylex (&yylval, &yylloc, YYLEX_PARAM)
#  else
#   define YYLEX		yylex (&yylval, &yylloc)
#  endif
# else /* !YYLSP_NEEDED */
#  ifdef YYLEX_PARAM
#   define YYLEX		yylex (&yylval, YYLEX_PARAM)
#  else
#   define YYLEX		yylex (&yylval)
#  endif
# endif /* !YYLSP_NEEDED */
#else /* !YYPURE */
# define YYLEX			yylex ()
#endif /* !YYPURE */


/* Enable debugging if requested.  */
#if YYDEBUG

# ifndef YYFPRINTF
#  include <stdio.h> /* INFRINGES ON USER NAME SPACE */
#  define YYFPRINTF fprintf
# endif

# define YYDPRINTF(Args)			\
do {						\
  if (yydebug)					\
    YYFPRINTF Args;				\
} while (0)
/* Nonzero means print parse trace.  It is left uninitialized so that
   multiple parsers can coexist.  */
int yydebug;
#else /* !YYDEBUG */
# define YYDPRINTF(Args)
#endif /* !YYDEBUG */

/* YYINITDEPTH -- initial size of the parser's stacks.  */
#ifndef	YYINITDEPTH
# define YYINITDEPTH 200
#endif

/* YYMAXDEPTH -- maximum size the stacks can grow to (effective only
   if the built-in stack extension method is used).

   Do not make this value too large; the results are undefined if
   SIZE_MAX < YYSTACK_BYTES (YYMAXDEPTH)
   evaluated with infinite-precision integer arithmetic.  */

#if YYMAXDEPTH == 0
# undef YYMAXDEPTH
#endif

#ifndef YYMAXDEPTH
# define YYMAXDEPTH 10000
#endif

#ifdef YYERROR_VERBOSE

# ifndef yystrlen
#  if defined (__GLIBC__) && defined (_STRING_H)
#   define yystrlen strlen
#  else
/* Return the length of YYSTR.  */
static YYSIZE_T
#   if defined (__STDC__) || defined (__cplusplus)
yystrlen (const char *yystr)
#   else
yystrlen (yystr)
     const char *yystr;
#   endif
{
  register const char *yys = yystr;

  while (*yys++ != '\0')
    continue;

  return yys - yystr - 1;
}
#  endif
# endif

# ifndef yystpcpy
#  if defined (__GLIBC__) && defined (_STRING_H) && defined (_GNU_SOURCE)
#   define yystpcpy stpcpy
#  else
/* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in
   YYDEST.  */
static char *
#   if defined (__STDC__) || defined (__cplusplus)
yystpcpy (char *yydest, const char *yysrc)
#   else
yystpcpy (yydest, yysrc)
     char *yydest;
     const char *yysrc;
#   endif
{
  register char *yyd = yydest;
  register const char *yys = yysrc;

  while ((*yyd++ = *yys++) != '\0')
    continue;

  return yyd - 1;
}
#  endif
# endif
#endif

#line 315 "/home/haible/gnu/arch/linuxlibc6/share/bison/bison.simple"


/* The user can define YYPARSE_PARAM as the name of an argument to be passed
   into yyparse.  The argument should have type void *.
   It should actually point to an object.
   Grammar actions can access the variable by casting it
   to the proper pointer type.  */

#ifdef YYPARSE_PARAM
# if defined (__STDC__) || defined (__cplusplus)
#  define YYPARSE_PARAM_ARG void *YYPARSE_PARAM
#  define YYPARSE_PARAM_DECL
# else
#  define YYPARSE_PARAM_ARG YYPARSE_PARAM
#  define YYPARSE_PARAM_DECL void *YYPARSE_PARAM;
# endif
#else /* !YYPARSE_PARAM */
# define YYPARSE_PARAM_ARG
# define YYPARSE_PARAM_DECL
#endif /* !YYPARSE_PARAM */

/* Prevent warning if -Wstrict-prototypes.  */
#ifdef __GNUC__
# ifdef YYPARSE_PARAM
int yyparse (void *);
# else
int yyparse (void);
# endif
#endif

/* YY_DECL_VARIABLES -- depending whether we use a pure parser,
   variables are global, or local to YYPARSE.  */

#define YY_DECL_NON_LSP_VARIABLES			\
/* The lookahead symbol.  */				\
int yychar;						\
							\
/* The semantic value of the lookahead symbol. */	\
YYSTYPE yylval;						\
							\
/* Number of parse errors so far.  */			\
int yynerrs;

#if YYLSP_NEEDED
# define YY_DECL_VARIABLES			\
YY_DECL_NON_LSP_VARIABLES			\
						\
/* Location data for the lookahead symbol.  */	\
YYLTYPE yylloc;
#else
# define YY_DECL_VARIABLES			\
YY_DECL_NON_LSP_VARIABLES
#endif


/* If nonreentrant, generate the variables here. */

#if !YYPURE
YY_DECL_VARIABLES
#endif  /* !YYPURE */

int
yyparse (YYPARSE_PARAM_ARG)
     YYPARSE_PARAM_DECL
{
  /* If reentrant, generate the variables here. */
#if YYPURE
  YY_DECL_VARIABLES
#endif  /* !YYPURE */

  register int yystate;
  register int yyn;
  int yyresult;
  /* Number of tokens to shift before error messages enabled.  */
  int yyerrstatus;
  /* Lookahead token as an internal (translated) token number.  */
  int yychar1 = 0;

  /* Three stacks and their tools:
     `yyss': related to states,
     `yyvs': related to semantic values,
     `yyls': related to locations.

     Refer to the stacks thru separate pointers, to allow yyoverflow
     to reallocate them elsewhere.  */

  /* The state stack. */
  short	yyssa[YYINITDEPTH];
  short *yyss = yyssa;
  register short *yyssp;

  /* The semantic value stack.  */
  YYSTYPE yyvsa[YYINITDEPTH];
  YYSTYPE *yyvs = yyvsa;
  register YYSTYPE *yyvsp;

#if YYLSP_NEEDED
  /* The location stack.  */
  YYLTYPE yylsa[YYINITDEPTH];
  YYLTYPE *yyls = yylsa;
  YYLTYPE *yylsp;
#endif

#if YYLSP_NEEDED
# define YYPOPSTACK   (yyvsp--, yyssp--, yylsp--)
#else
# define YYPOPSTACK   (yyvsp--, yyssp--)
#endif

  YYSIZE_T yystacksize = YYINITDEPTH;


  /* The variables used to return semantic value and location from the
     action routines.  */
  YYSTYPE yyval;
#if YYLSP_NEEDED
  YYLTYPE yyloc;
#endif

  /* When reducing, the number of symbols on the RHS of the reduced
     rule. */
  int yylen;

  YYDPRINTF ((stderr, "Starting parse\n"));

  yystate = 0;
  yyerrstatus = 0;
  yynerrs = 0;
  yychar = YYEMPTY;		/* Cause a token to be read.  */

  /* Initialize stack pointers.
     Waste one element of value and location stack
     so that they stay on the same level as the state stack.
     The wasted elements are never initialized.  */

  yyssp = yyss;
  yyvsp = yyvs;
#if YYLSP_NEEDED
  yylsp = yyls;
#endif
  goto yysetstate;

/*------------------------------------------------------------.
| yynewstate -- Push a new state, which is found in yystate.  |
`------------------------------------------------------------*/
 yynewstate:
  /* In all cases, when you get here, the value and location stacks
     have just been pushed. so pushing a state here evens the stacks.
     */
  yyssp++;

 yysetstate:
  *yyssp = yystate;

  if (yyssp >= yyss + yystacksize - 1)
    {
      /* Get the current used size of the three stacks, in elements.  */
      YYSIZE_T yysize = yyssp - yyss + 1;

#ifdef yyoverflow
      {
	/* Give user a chance to reallocate the stack. Use copies of
	   these so that the &'s don't force the real ones into
	   memory.  */
	YYSTYPE *yyvs1 = yyvs;
	short *yyss1 = yyss;

	/* Each stack pointer address is followed by the size of the
	   data in use in that stack, in bytes.  */
# if YYLSP_NEEDED
	YYLTYPE *yyls1 = yyls;
	/* This used to be a conditional around just the two extra args,
	   but that might be undefined if yyoverflow is a macro.  */
	yyoverflow ("parser stack overflow",
		    &yyss1, yysize * sizeof (*yyssp),
		    &yyvs1, yysize * sizeof (*yyvsp),
		    &yyls1, yysize * sizeof (*yylsp),
		    &yystacksize);
	yyls = yyls1;
# else
	yyoverflow ("parser stack overflow",
		    &yyss1, yysize * sizeof (*yyssp),
		    &yyvs1, yysize * sizeof (*yyvsp),
		    &yystacksize);
# endif
	yyss = yyss1;
	yyvs = yyvs1;
      }
#else /* no yyoverflow */
# ifndef YYSTACK_RELOCATE
      goto yyoverflowlab;
# else
      /* Extend the stack our own way.  */
      if (yystacksize >= YYMAXDEPTH)
	goto yyoverflowlab;
      yystacksize *= 2;
      if (yystacksize > YYMAXDEPTH)
	yystacksize = YYMAXDEPTH;

      {
	short *yyss1 = yyss;
	union yyalloc *yyptr =
	  (union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize));
	if (! yyptr)
	  goto yyoverflowlab;
	YYSTACK_RELOCATE (yyss);
	YYSTACK_RELOCATE (yyvs);
# if YYLSP_NEEDED
	YYSTACK_RELOCATE (yyls);
# endif
# undef YYSTACK_RELOCATE
	if (yyss1 != yyssa)
	  YYSTACK_FREE (yyss1);
      }
# endif
#endif /* no yyoverflow */

      yyssp = yyss + yysize - 1;
      yyvsp = yyvs + yysize - 1;
#if YYLSP_NEEDED
      yylsp = yyls + yysize - 1;
#endif

      YYDPRINTF ((stderr, "Stack size increased to %lu\n",
		  (unsigned long int) yystacksize));

      if (yyssp >= yyss + yystacksize - 1)
	YYABORT;
    }

  YYDPRINTF ((stderr, "Entering state %d\n", yystate));

  goto yybackup;


/*-----------.
| yybackup.  |
`-----------*/
yybackup:

/* Do appropriate processing given the current state.  */
/* Read a lookahead token if we need one and don't already have one.  */
/* yyresume: */

  /* First try to decide what to do without reference to lookahead token.  */

  yyn = yypact[yystate];
  if (yyn == YYFLAG)
    goto yydefault;

  /* Not known => get a lookahead token if don't already have one.  */

  /* yychar is either YYEMPTY or YYEOF
     or a valid token in external form.  */

  if (yychar == YYEMPTY)
    {
      YYDPRINTF ((stderr, "Reading a token: "));
      yychar = YYLEX;
    }

  /* Convert token to internal form (in yychar1) for indexing tables with */

  if (yychar <= 0)		/* This means end of input. */
    {
      yychar1 = 0;
      yychar = YYEOF;		/* Don't call YYLEX any more */

      YYDPRINTF ((stderr, "Now at end of input.\n"));
    }
  else
    {
      yychar1 = YYTRANSLATE (yychar);

#if YYDEBUG
     /* We have to keep this `#if YYDEBUG', since we use variables
	which are defined only if `YYDEBUG' is set.  */
      if (yydebug)
	{
	  YYFPRINTF (stderr, "Next token is %d (%s",
		     yychar, yytname[yychar1]);
	  /* Give the individual parser a way to print the precise
	     meaning of a token, for further debugging info.  */
# ifdef YYPRINT
	  YYPRINT (stderr, yychar, yylval);
# endif
	  YYFPRINTF (stderr, ")\n");
	}
#endif
    }

  yyn += yychar1;
  if (yyn < 0 || yyn > YYLAST || yycheck[yyn] != yychar1)
    goto yydefault;

  yyn = yytable[yyn];

  /* yyn is what to do for this token type in this state.
     Negative => reduce, -yyn is rule number.
     Positive => shift, yyn is new state.
       New state is final state => don't bother to shift,
       just return success.
     0, or most negative number => error.  */

  if (yyn < 0)
    {
      if (yyn == YYFLAG)
	goto yyerrlab;
      yyn = -yyn;
      goto yyreduce;
    }
  else if (yyn == 0)
    goto yyerrlab;

  if (yyn == YYFINAL)
    YYACCEPT;

  /* Shift the lookahead token.  */
  YYDPRINTF ((stderr, "Shifting token %d (%s), ",
	      yychar, yytname[yychar1]));

  /* Discard the token being shifted unless it is eof.  */
  if (yychar != YYEOF)
    yychar = YYEMPTY;

  *++yyvsp = yylval;
#if YYLSP_NEEDED
  *++yylsp = yylloc;
#endif

  /* Count tokens shifted since error; after three, turn off error
     status.  */
  if (yyerrstatus)
    yyerrstatus--;

  yystate = yyn;
  goto yynewstate;


/*-----------------------------------------------------------.
| yydefault -- do the default action for the current state.  |
`-----------------------------------------------------------*/
yydefault:
  yyn = yydefact[yystate];
  if (yyn == 0)
    goto yyerrlab;
  goto yyreduce;


/*-----------------------------.
| yyreduce -- Do a reduction.  |
`-----------------------------*/
yyreduce:
  /* yyn is the number of a rule to reduce with.  */
  yylen = yyr2[yyn];

  /* If YYLEN is nonzero, implement the default value of the action:
     `$$ = $1'.

     Otherwise, the following line sets YYVAL to the semantic value of
     the lookahead token.  This behavior is undocumented and Bison
     users should not rely upon it.  Assigning to YYVAL
     unconditionally makes the parser a bit smaller, and it avoids a
     GCC warning that YYVAL may be used uninitialized.  */
  yyval = yyvsp[1-yylen];

#if YYLSP_NEEDED
  /* Similarly for the default location.  Let the user run additional
     commands if for instance locations are ranges.  */
  yyloc = yylsp[1-yylen];
  YYLLOC_DEFAULT (yyloc, (yylsp - yylen), yylen);
#endif

#if YYDEBUG
  /* We have to keep this `#if YYDEBUG', since we use variables which
     are defined only if `YYDEBUG' is set.  */
  if (yydebug)
    {
      int yyi;

      YYFPRINTF (stderr, "Reducing via rule %d (line %d), ",
		 yyn, yyrline[yyn]);

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产99久久久久久免费看农村| 91精品国产高清一区二区三区 | 精品国产一区久久| 日本一区二区不卡视频| 亚洲国产中文字幕| 丁香一区二区三区| 精品噜噜噜噜久久久久久久久试看| 国产精品毛片久久久久久| 日韩**一区毛片| 在线精品视频免费观看| 久久久久久久久久久久久女国产乱 | 在线电影院国产精品| **欧美大码日韩| 国产一区二区不卡在线| 日韩亚洲欧美中文三级| 亚洲一区二区视频在线观看| 成人97人人超碰人人99| 精品国产欧美一区二区| 午夜欧美大尺度福利影院在线看| 91偷拍与自偷拍精品| 日本一区二区免费在线| 国产精品一区二区黑丝| 精品处破学生在线二十三| 免费的国产精品| 777午夜精品视频在线播放| 亚洲综合色在线| 91麻豆国产福利在线观看| 欧美激情中文字幕一区二区| 国产乱国产乱300精品| 久久婷婷国产综合精品青草| 日韩成人精品在线| 日韩一区二区三区在线观看| 日本欧美肥老太交大片| 日韩欧美国产精品一区| 蜜臂av日日欢夜夜爽一区| 3d动漫精品啪啪| 看国产成人h片视频| 日韩精品专区在线影院观看| 精品一区二区在线看| 久久免费精品国产久精品久久久久| 激情成人午夜视频| 久久久久久免费毛片精品| 国产成人日日夜夜| 日本一区二区三区国色天香| 丁香激情综合国产| 自拍av一区二区三区| 欧美性生活一区| 免费在线观看成人| 国产目拍亚洲精品99久久精品| 99久久99久久免费精品蜜臀| 亚洲激情综合网| 91精品久久久久久久99蜜桃| 国产精品影视在线观看| 亚洲国产精品精华液2区45| 99久久国产综合精品色伊| 亚洲高清不卡在线观看| 日韩一区二区三区在线观看| 国产成人av资源| 亚洲激情中文1区| 日韩欧美国产成人一区二区| 成人午夜av电影| 亚洲午夜三级在线| 国产亚洲欧美日韩在线一区| 99国产精品久久久久久久久久| 亚洲午夜激情网站| 亚洲精品在线免费播放| 91在线视频官网| 久久精品国产色蜜蜜麻豆| 国产精品免费人成网站| 欧美日韩国产欧美日美国产精品| 久久99久国产精品黄毛片色诱| 中文字幕一区二区三区av| 欧美日韩精品一二三区| 成人午夜大片免费观看| 男人的天堂久久精品| 国产精品亲子伦对白| 91精品国产综合久久久久久| 成人免费视频网站在线观看| 蜜桃久久久久久久| 国产精品久久久久久久久快鸭| 欧美精品aⅴ在线视频| 99国产精品国产精品毛片| 日本女优在线视频一区二区| 中文字幕欧美一区| 欧美成人福利视频| 欧美肥胖老妇做爰| 色嗨嗨av一区二区三区| 丰满亚洲少妇av| 麻豆高清免费国产一区| 亚洲综合精品久久| 亚洲视频 欧洲视频| 久久综合成人精品亚洲另类欧美| 欧美日韩国产大片| av在线播放成人| 成人教育av在线| 国产精品正在播放| 韩国欧美国产1区| 热久久国产精品| 天天综合色天天| 亚洲成a人片在线观看中文| 国产精品久久99| 国产精品免费视频网站| 欧美国产激情二区三区| 亚洲精品一区二区三区香蕉| 欧美一区二区三区日韩| 欧美日产国产精品| 欧美亚日韩国产aⅴ精品中极品| 成人av资源站| 91婷婷韩国欧美一区二区| 99re8在线精品视频免费播放| 国产成人免费视频精品含羞草妖精| 日韩高清不卡一区二区三区| 日韩一区精品视频| 日韩国产在线一| 麻豆91精品91久久久的内涵| 日韩成人精品在线| 久久国产精品一区二区| 韩国午夜理伦三级不卡影院| 国内不卡的二区三区中文字幕| 狠狠色丁香久久婷婷综合_中 | 日韩精品一区二| 久久综合九色综合欧美98| 久久这里只有精品首页| 久久蜜臀中文字幕| 国产婷婷一区二区| 国产精品国产三级国产aⅴ中文 | 国产自产高清不卡| 国产成人啪免费观看软件| 成人一区在线观看| 色综合天天综合| 在线不卡a资源高清| 欧美不卡视频一区| 欧美国产精品一区二区三区| 亚洲色图视频网站| 日韩经典一区二区| 国产经典欧美精品| 91蜜桃视频在线| 欧美精品一卡二卡| 欧美国产禁国产网站cc| 亚洲一区二区影院| 韩国毛片一区二区三区| 成人激情图片网| 欧美精三区欧美精三区| 久久久不卡影院| 亚洲一区二区不卡免费| 国精产品一区一区三区mba视频 | 国产精品888| 色吧成人激情小说| 久久综合狠狠综合久久激情| 亚洲人午夜精品天堂一二香蕉| 石原莉奈在线亚洲二区| www.日韩av| 日韩欧美国产一区二区三区| 最好看的中文字幕久久| 青青草国产精品97视觉盛宴| 成人午夜av电影| 日韩视频在线观看一区二区| 日韩毛片视频在线看| 精品一区二区久久| 在线视频你懂得一区| 久久青草国产手机看片福利盒子| 亚洲一区免费在线观看| 国产精品自拍三区| 欧美一区永久视频免费观看| 自拍视频在线观看一区二区| 激情综合色丁香一区二区| 欧美在线一区二区三区| 亚洲国产精品成人综合色在线婷婷| 午夜精品福利久久久| 99re6这里只有精品视频在线观看 99re8在线精品视频免费播放 | 亚洲精品网站在线观看| 久久精品av麻豆的观看方式| 色婷婷精品大在线视频| 日本一区二区三级电影在线观看| 日韩成人dvd| 欧美日韩一区二区三区不卡| 亚洲桃色在线一区| 成人性生交大片免费看中文网站| 日韩精品一区二区三区四区视频| 亚洲国产日韩一级| av午夜精品一区二区三区| 国产亚洲一二三区| 久久97超碰色| 日韩三区在线观看| 日韩av二区在线播放| 欧美吻胸吃奶大尺度电影| 亚洲精品中文字幕在线观看| 波多野结衣亚洲一区| 国产欧美一区二区三区在线老狼| 另类调教123区| 精品日韩在线观看| 麻豆一区二区三| 欧美一区二区视频在线观看2020| 亚洲午夜久久久久久久久电影网 | 不卡大黄网站免费看| 国产亚洲欧洲997久久综合| 国产一区美女在线| 久久九九久精品国产免费直播| 男男gaygay亚洲| 精品国产污污免费网站入口|