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

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

?? regex.c

?? 功能較全面的反匯編器:反匯編器ht-2.0.15.tar.gz
?? C
?? 第 1 頁 / 共 5 頁
字號:
			goto normal_char;		 }		 break;	case '+':	   case '?':		if ((syntax & RE_BK_PLUS_QM)		    || (syntax & RE_LIMITED_OPS))		  goto normal_char;	   handle_plus:	   case '*':		/* If there is no previous pattern... */		if (!laststart)		  {		    if (syntax & RE_CONTEXT_INVALID_OPS)			 FREE_STACK_RETURN (REG_BADRPT);		    else if (!(syntax & RE_CONTEXT_INDEP_OPS))			 goto normal_char;		  }		{		  /* Are we optimizing this jump?  */		  boolean keep_string_p = false;		  		  /* 1 means zero (many) matches is allowed.  */		  char zero_times_ok = 0, many_times_ok = 0;		  /* If there is a sequence of repetition chars, collapse it			down to just one (the right one).  We can't combine			interval operators with these because of, e.g., `a{2}*',			which should only match an even number of `a's.  */		  for (;;)		    {			 zero_times_ok |= c != '+';			 many_times_ok |= c != '?';			 if (p == pend)			   break;			 PATFETCH (c);			 if (c == '*'				|| (!(syntax & RE_BK_PLUS_QM) && (c == '+' || c == '?')))			   ;			 else if (syntax & RE_BK_PLUS_QM  &&  c == '\\')			   {				if (p == pend) FREE_STACK_RETURN (REG_EESCAPE);				PATFETCH (c1);				if (!(c1 == '+' || c1 == '?'))				  {				    PATUNFETCH;				    PATUNFETCH;				    break;				  }				c = c1;			   }			 else			   {				PATUNFETCH;				break;			   }			 /* If we get here, we found another repeat character.  */			}		  /* Star, etc. applied to an empty pattern is equivalent			to an empty pattern.  */		  if (!laststart)  		    break;		  /* Now we know whether or not zero matches is allowed			and also whether or not two or more matches is allowed.  */		  if (many_times_ok)		    { /* More than one repetition is allowed, so put in at the			    end a backward relative jump from `b' to before the next			    jump we're going to put in below (which jumps from			    laststart to after this jump).  			    But if we are at the `*' in the exact sequence `.*\n',			    insert an unconditional jump backwards to the .,			    instead of the beginning of the loop.  This way we only			    push a failure point once, instead of every time			    through the loop.  */			 assert (p - 1 > pattern);			 /* Allocate the space for the jump.  */			 GET_BUFFER_SPACE (3);			 /* We know we are not at the first character of the pattern,			    because laststart was nonzero.  And we've already			    incremented `p', by the way, to be the character after			    the `*'.  Do we have to do something analogous here			    for null bytes, because of RE_DOT_NOT_NULL?  */			 if (TRANSLATE (*(p - 2)) == TRANSLATE ('.')		    && zero_times_ok				&& p < pend && TRANSLATE (*p) == TRANSLATE ('\n')				&& !(syntax & RE_DOT_NEWLINE))			   { /* We have .*\n.  */				STORE_JUMP (jump, b, laststart);				keep_string_p = true;			   }			 else			   /* Anything else.  */			   STORE_JUMP (maybe_pop_jump, b, laststart - 3);			 /* We've added more stuff to the buffer.  */			 b += 3;		    }		  /* On failure, jump from laststart to b + 3, which will be the			end of the buffer after this jump is inserted.  */		  GET_BUFFER_SPACE (3);		  INSERT_JUMP (keep_string_p ? on_failure_keep_string_jump							    : on_failure_jump,					laststart, b + 3);		  pending_exact = 0;		  b += 3;		  if (!zero_times_ok)		    {			 /* At least one repetition is required, so insert a			    `dummy_failure_jump' before the initial			    `on_failure_jump' instruction of the loop. This			    effects a skip over that instruction the first time			    we hit that loop.  */			 GET_BUFFER_SPACE (3);			 INSERT_JUMP (dummy_failure_jump, laststart, laststart + 6);			 b += 3;		    }		  }	  break;	case '.':		laststart = b;		BUF_PUSH (anychar);		break;	   case '[':		{		  boolean had_char_class = false;		  if (p == pend) FREE_STACK_RETURN (REG_EBRACK);		  /* Ensure that we have enough space to push a charset: the			opcode, the length count, and the bitset; 34 bytes in all.  */	    GET_BUFFER_SPACE (34);		  laststart = b;		  /* We test `*p == '^' twice, instead of using an if			statement, so we only need one BUF_PUSH.  */		  BUF_PUSH (*p == '^' ? charset_not : charset); 		  if (*p == '^')		    p++;		  /* Remember the first position in the bracket expression.  */		  p1 = p;		  /* Push the number of bytes in the bitmap.  */		  BUF_PUSH ((1 << BYTEWIDTH) / BYTEWIDTH);		  /* Clear the whole map.  */		  bzero (b, (1 << BYTEWIDTH) / BYTEWIDTH);		  /* charset_not matches newline according to a syntax bit.  */		  if ((re_opcode_t) b[-2] == charset_not			 && (syntax & RE_HAT_LISTS_NOT_NEWLINE))		    SET_LIST_BIT ('\n');		  /* Read in characters and ranges, setting map bits.  */		  for (;;)		    {			 if (p == pend) FREE_STACK_RETURN (REG_EBRACK);			 PATFETCH (c);			 /* \ might escape characters inside [...] and [^...].  */			 if ((syntax & RE_BACKSLASH_ESCAPE_IN_LISTS) && c == '\\')			   {				if (p == pend) FREE_STACK_RETURN (REG_EESCAPE);				PATFETCH (c1);				SET_LIST_BIT (c1);				continue;			   }			 /* Could be the end of the bracket expression.  If it's			    not (i.e., when the bracket expression is `[]' so			    far), the ']' character bit gets set way below.  */			 if (c == ']' && p != p1 + 1)			   break;			 /* Look ahead to see if it's a range when the last thing			    was a character class.  */			 if (had_char_class && c == '-' && *p != ']')			   FREE_STACK_RETURN (REG_ERANGE);			 /* Look ahead to see if it's a range when the last thing			    was a character: if this is a hyphen not at the			    beginning or the end of a list, then it's the range			    operator.  */			 if (c == '-' 				&& !(p - 2 >= pattern && p[-2] == '[') 				&& !(p - 3 >= pattern && p[-3] == '[' && p[-2] == '^')				&& *p != ']')			   {				reg_errcode_t ret				  = compile_range (&p, pend, translate, syntax, b);				if (ret != REG_NOERROR) FREE_STACK_RETURN (ret);			   }			 else if (p[0] == '-' && p[1] != ']')			   { /* This handles ranges made up of characters only.  */				reg_errcode_t ret;		    /* Move past the `-'.  */				PATFETCH (c1);								ret = compile_range (&p, pend, translate, syntax, b);				if (ret != REG_NOERROR) FREE_STACK_RETURN (ret);			   }			 /* See if we're at the beginning of a possible character			    class.  */			 else if (syntax & RE_CHAR_CLASSES && c == '[' && *p == ':')			   { /* Leave room for the null.  */				char str[CHAR_CLASS_MAX_LENGTH + 1];				PATFETCH (c);				c1 = 0;				/* If pattern is `[[:'.  */				if (p == pend) FREE_STACK_RETURN (REG_EBRACK);				for (;;)				  {				    PATFETCH (c);				    if (c == ':' || c == ']' || p == pend					   || c1 == CHAR_CLASS_MAX_LENGTH)					 break;				    str[c1++] = c;				  }				str[c1] = '\0';				/* If isn't a word bracketed by `[:' and:`]':				   undo the ending character, the letters, and leave 				   the leading `:' and `[' (but set bits for them).  */				if (c == ':' && *p == ']')				  {				    int ch;				    boolean is_alnum = STREQ (str, "alnum");				    boolean is_alpha = STREQ (str, "alpha");				    boolean is_blank = STREQ (str, "blank");				    boolean is_cntrl = STREQ (str, "cntrl");				    boolean is_digit = STREQ (str, "digit");				    boolean is_graph = STREQ (str, "graph");				    boolean is_lower = STREQ (str, "lower");				    boolean is_print = STREQ (str, "print");				    boolean is_punct = STREQ (str, "punct");				    boolean is_space = STREQ (str, "space");				    boolean is_upper = STREQ (str, "upper");				    boolean is_xdigit = STREQ (str, "xdigit");				    				    if (!IS_CHAR_CLASS (str))			  FREE_STACK_RETURN (REG_ECTYPE);				    /* Throw away the ] at the end of the character					  class.  */				    PATFETCH (c);									    if (p == pend) FREE_STACK_RETURN (REG_EBRACK);				    for (ch = 0; ch < 1 << BYTEWIDTH; ch++)					 {			    /* This was split into 3 if's to				  avoid an arbitrary limit in some compiler.  */					   if (   (is_alnum  && ISALNUM (ch))						  || (is_alpha  && ISALPHA (ch))						  || (is_blank  && ISBLANK (ch))						  || (is_cntrl  && ISCNTRL (ch)))				 SET_LIST_BIT (ch);			    if (   (is_digit  && ISDIGIT (ch))						  || (is_graph  && ISGRAPH (ch))						  || (is_lower  && ISLOWER (ch))						  || (is_print  && ISPRINT (ch)))				 SET_LIST_BIT (ch);			    if (   (is_punct  && ISPUNCT (ch))						  || (is_space  && ISSPACE (ch))						  || (is_upper  && ISUPPER (ch))						  || (is_xdigit && ISXDIGIT (ch)))				 SET_LIST_BIT (ch);					 }				    had_char_class = true;				  }				else				  {				    c1++;				    while (c1--)    					 PATUNFETCH;				    SET_LIST_BIT ('[');				    SET_LIST_BIT (':');				    had_char_class = false;				  }			   }			 else			   {				had_char_class = false;				SET_LIST_BIT (c);			   }		    }		  /* Discard any (non)matching list bytes that are all 0 at the			end of the map.  Decrease the map-length byte too.  */		  while ((int) b[-1] > 0 && b[b[-1] - 1] == 0) 		    b[-1]--; 		  b += b[-1];		}		break;	case '(':		if (syntax & RE_NO_BK_PARENS)		  goto handle_open;		else		  goto normal_char;	   case ')':		if (syntax & RE_NO_BK_PARENS)		  goto handle_close;		else		  goto normal_char;	   case '\n':		if (syntax & RE_NEWLINE_ALT)		  goto handle_alt;		else		  goto normal_char;	case '|':		if (syntax & RE_NO_BK_VBAR)		  goto handle_alt;		else		  goto normal_char;	   case '{':		 if (syntax & RE_INTERVALS && syntax & RE_NO_BK_BRACES)		   goto handle_interval;		 else		   goto normal_char;	   case '\\':		if (p == pend) FREE_STACK_RETURN (REG_EESCAPE);		/* Do not translate the character after the \, so that we can		   distinguish, e.g., \B from \b, even if we normally would		   translate, e.g., B to b.  */		PATFETCH_RAW (c);		switch (c)		  {		  case '(':		    if (syntax & RE_NO_BK_PARENS)			 goto normal_backslash;		  handle_open:		    bufp->re_nsub++;		    regnum++;		    if (COMPILE_STACK_FULL)			 { 			   RETALLOC (compile_stack.stack, compile_stack.size << 1,					   compile_stack_elt_t);			   if (compile_stack.stack == NULL) return REG_ESPACE;			   compile_stack.size <<= 1;			 }		    /* These are the values to restore when we hit end of this			  group.  They are all relative offsets, so that if the			  whole pattern moves because of realloc, they will still			  be valid.  */		    COMPILE_STACK_TOP.begalt_offset = begalt - bufp->buffer;		    COMPILE_STACK_TOP.fixup_alt_jump 			 = fixup_alt_jump ? fixup_alt_jump - bufp->buffer + 1 : 0;		    COMPILE_STACK_TOP.laststart_offset = b - bufp->buffer;		    COMPILE_STACK_TOP.regnum = regnum;		    /* We will eventually replace the 0 with the number of			  groups inner to this one.  But do not push a			  start_memory for groups beyond the last one we can			  represent in the compiled pattern.  */		    if (regnum <= MAX_REGNUM)			 {			   COMPILE_STACK_TOP.inner_group_offset = b - bufp->buffer + 2;			   BUF_PUSH_3 (start_memory, regnum, 0);			 }			 		    compile_stack.avail++;		    fixup_alt_jump = 0;		    laststart = 0;		    begalt = b;		 /* If we've reached MAX_REGNUM groups, then this open		 won't actually generate any code, so we'll have to		 clear pending_exact explicitly.  */		 pending_exact = 0;		    break;		  case ')':		    if (syntax & RE_NO_BK_PARENS) goto normal_backslash;		    if (COMPILE_STACK_EMPTY)			 if (syntax & RE_UNMATCHED_RIGHT_PAREN_ORD)			   goto normal_backslash;			 else			   FREE_STACK_RETURN (REG_ERPAREN);		  handle_close:		    if (fixup_alt_jump)			 { /* Push a dummy failure point at the end of the				 alternative for a possible future				 `pop_failure_jump' to pop.  See comments at				 `push_dummy_failure' in `re_match_2'.  */			   BUF_PUSH (push_dummy_failure);			   			   /* We allocated space for this

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
91成人免费在线| 精品一区二区三区日韩| 久久99日本精品| 91久久精品一区二区| 久久一二三国产| 日韩影视精彩在线| 成人av资源站| 精品国产百合女同互慰| 午夜伦欧美伦电影理论片| 成人激情校园春色| 久久这里只有精品视频网| 日韩精品三区四区| 91国偷自产一区二区开放时间| 国产片一区二区三区| 麻豆精品一区二区综合av| 欧美性色黄大片| 亚洲丝袜美腿综合| 豆国产96在线|亚洲| 精品国产精品网麻豆系列| 天天综合天天做天天综合| 欧洲一区在线电影| 最新久久zyz资源站| 东方aⅴ免费观看久久av| 精品福利一二区| 免费看欧美女人艹b| 5566中文字幕一区二区电影| 亚洲一级二级三级在线免费观看| 91天堂素人约啪| 中文字幕一区不卡| 成人免费视频一区| 欧美国产精品中文字幕| 国产电影一区在线| 国产亚洲综合色| 国产精品影音先锋| 精品国产乱码久久久久久老虎| 久久99久久99| 2017欧美狠狠色| 国产一区二区三区电影在线观看 | 91在线视频免费观看| 国产精品三级久久久久三级| 福利91精品一区二区三区| 日本一区二区三区免费乱视频| 狠狠色丁香婷综合久久| 精品av综合导航| 国产麻豆精品95视频| 久久久久久久综合狠狠综合| 国产乱码精品一区二区三区av| 精品成人一区二区三区| 国产精一品亚洲二区在线视频| 久久亚洲综合av| 成人综合婷婷国产精品久久蜜臀 | 精品国产免费视频| 国内外成人在线| 亚洲国产精品99久久久久久久久| 国产不卡在线一区| 日韩理论电影院| 欧美日韩国产小视频在线观看| 日韩影院免费视频| 久久嫩草精品久久久精品一| 国内精品免费**视频| 国产欧美一区二区精品忘忧草| 不卡的看片网站| 亚洲国产一区二区在线播放| 在线电影一区二区三区| 日本va欧美va精品| 久久久久久久精| 波多野结衣一区二区三区| 亚洲激情在线激情| 在线成人av网站| 国产综合成人久久大片91| 国产精品女人毛片| 欧美性videosxxxxx| 蜜桃视频一区二区| wwwwww.欧美系列| 9人人澡人人爽人人精品| 一区二区三区久久久| 欧美一区二区三区在线观看| 国产剧情一区二区三区| 亚洲黄色小视频| 欧美一区永久视频免费观看| 国产成人综合网| 亚洲最快最全在线视频| 日韩免费一区二区三区在线播放| 粉嫩一区二区三区性色av| 亚洲电影在线播放| 精品国产乱码91久久久久久网站| av一二三不卡影片| 肉肉av福利一精品导航| 国产精品日韩精品欧美在线| 欧美影片第一页| 国产福利精品一区| 午夜精品免费在线| 久久欧美中文字幕| 欧美在线观看视频一区二区三区| 九九**精品视频免费播放| 亚洲欧美激情视频在线观看一区二区三区| 欧美日高清视频| av成人动漫在线观看| 全部av―极品视觉盛宴亚洲| 国产精品久久久久久一区二区三区 | 国产精品18久久久久久久久久久久| 亚洲免费在线视频一区 二区| 91精品国产91久久久久久一区二区 | 国产精品乱人伦一区二区| 日韩亚洲欧美综合| 91浏览器在线视频| 国产一级精品在线| 性久久久久久久久久久久| 国产精品国产a| 日韩精品一区二区三区在线| 欧洲av在线精品| 国产aⅴ综合色| 蜜桃av噜噜一区| 亚洲一区二区三区在线看| 日本一区二区三区国色天香| 7777精品伊人久久久大香线蕉最新版| 99视频超级精品| 国产一区二区精品久久91| 亚洲午夜精品在线| 国产精品久久久久永久免费观看| 精品粉嫩超白一线天av| 欧美在线观看视频在线| av亚洲精华国产精华精| 国产在线精品一区在线观看麻豆| 五月天激情小说综合| 亚洲美女在线国产| 亚洲国产电影在线观看| 精品国产成人在线影院| 欧美一区二区三区四区视频 | 高清国产午夜精品久久久久久| 日本va欧美va瓶| 视频一区视频二区中文字幕| 亚洲精品高清在线| 综合中文字幕亚洲| 欧美国产国产综合| 久久综合久久综合久久综合| 日韩无一区二区| 欧美日韩一区二区在线观看视频| 成人动漫精品一区二区| 国产精品夜夜爽| 国产一区二区三区免费看| 精品一区二区三区免费| 蜜臀精品久久久久久蜜臀| 午夜精品久久久久久久久久| 一区二区三区成人在线视频| 一区二区三区欧美| 亚洲免费av高清| 亚洲精品国产成人久久av盗摄| 亚洲码国产岛国毛片在线| 最新日韩av在线| 亚洲欧洲三级电影| 国产精品卡一卡二卡三| 国产精品久久夜| 国产精品久久网站| 中文字幕亚洲一区二区av在线| 国产精品久久免费看| 国产精品久久久久四虎| 18欧美亚洲精品| 亚洲免费三区一区二区| 有坂深雪av一区二区精品| 一区二区三区中文在线观看| 一区二区高清视频在线观看| 亚洲一区影音先锋| 性久久久久久久| 免费欧美日韩国产三级电影| 国模娜娜一区二区三区| 国产精品99久久久久久久女警| 国产aⅴ综合色| 91小宝寻花一区二区三区| 精品久久久久香蕉网| 久久亚洲综合av| 亚洲欧洲无码一区二区三区| 一区二区三区免费观看| 午夜久久久影院| 久久精品国产99国产| 国产一区二区精品久久91| 波波电影院一区二区三区| 色综合亚洲欧洲| 在线成人免费观看| 2024国产精品| 亚洲三级电影全部在线观看高清| 亚洲男人的天堂av| 日韩国产欧美视频| 激情小说欧美图片| 粉嫩av一区二区三区在线播放| 一本到三区不卡视频| 欧美精品九九99久久| 久久夜色精品国产噜噜av| 亚洲婷婷综合久久一本伊一区| 亚洲综合免费观看高清完整版在线| 日本午夜精品一区二区三区电影| 国产在线播放一区二区三区| 99久久婷婷国产精品综合| 欧美日韩另类国产亚洲欧美一级| 日韩你懂的在线播放| 国产精品久久久久久亚洲伦| 亚洲成人久久影院| 精品亚洲国产成人av制服丝袜| www.av亚洲| 6080亚洲精品一区二区|