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

? 歡迎來(lái)到蟲(chóng)蟲(chóng)下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲(chóng)蟲(chóng)下載站

?? pcre_dfa_exec.c

?? SDL文件。SDL_ERROwenjian.....
?? C
?? 第 1 頁(yè) / 共 5 頁(yè)
字號(hào):
else  {  end_code = this_start_code;  /* Restarting */  if (rlevel == 1 && (md->moptions & PCRE_DFA_RESTART) != 0)    {    do { end_code += GET(end_code, 1); } while (*end_code == OP_ALT);    new_count = workspace[1];    if (!workspace[0])      memcpy(new_states, active_states, new_count * sizeof(stateblock));    }  /* Not restarting */  else    {    int length = 1 + LINK_SIZE +      ((*this_start_code == OP_CBRA || *this_start_code == OP_SCBRA)? 2:0);    do      {      ADD_NEW(end_code - start_code + length, 0);      end_code += GET(end_code, 1);      length = 1 + LINK_SIZE;      }    while (*end_code == OP_ALT);    }  }workspace[0] = 0;    /* Bit indicating which vector is current */DPRINTF(("%.*sEnd state = %d\n", rlevel*2-2, SP, end_code - start_code));/* Loop for scanning the subject */ptr = current_subject;for (;;)  {  int i, j;  int clen, dlen;  unsigned int c, d;  /* Make the new state list into the active state list and empty the  new state list. */  temp_states = active_states;  active_states = new_states;  new_states = temp_states;  active_count = new_count;  new_count = 0;  workspace[0] ^= 1;              /* Remember for the restarting feature */  workspace[1] = active_count;#ifdef DEBUG  printf("%.*sNext character: rest of subject = \"", rlevel*2-2, SP);  pchars((uschar *)ptr, strlen((char *)ptr), stdout);  printf("\"\n");  printf("%.*sActive states: ", rlevel*2-2, SP);  for (i = 0; i < active_count; i++)    printf("%d/%d ", active_states[i].offset, active_states[i].count);  printf("\n");#endif  /* Set the pointers for adding new states */  next_active_state = active_states + active_count;  next_new_state = new_states;  /* Load the current character from the subject outside the loop, as many  different states may want to look at it, and we assume that at least one  will. */  if (ptr < end_subject)    {    clen = 1;        /* Number of bytes in the character */#ifdef SUPPORT_UTF8    if (utf8) { GETCHARLEN(c, ptr, clen); } else#endif  /* SUPPORT_UTF8 */    c = *ptr;    }  else    {    clen = 0;        /* This indicates the end of the subject */    c = NOTACHAR;    /* This value should never actually be used */    }  /* Scan up the active states and act on each one. The result of an action  may be to add more states to the currently active list (e.g. on hitting a  parenthesis) or it may be to put states on the new list, for considering  when we move the character pointer on. */  for (i = 0; i < active_count; i++)    {    stateblock *current_state = active_states + i;    const uschar *code;    int state_offset = current_state->offset;    int count, codevalue;#ifdef SUPPORT_UCP    int chartype, script;#endif#ifdef DEBUG    printf ("%.*sProcessing state %d c=", rlevel*2-2, SP, state_offset);    if (clen == 0) printf("EOL\n");      else if (c > 32 && c < 127) printf("'%c'\n", c);        else printf("0x%02x\n", c);#endif    /* This variable is referred to implicity in the ADD_xxx macros. */    ims = current_state->ims;    /* A negative offset is a special case meaning "hold off going to this    (negated) state until the number of characters in the data field have    been skipped". */    if (state_offset < 0)      {      if (current_state->data > 0)        {        DPRINTF(("%.*sSkipping this character\n", rlevel*2-2, SP));        ADD_NEW_DATA(state_offset, current_state->count,          current_state->data - 1);        continue;        }      else        {        current_state->offset = state_offset = -state_offset;        }      }    /* Check for a duplicate state with the same count, and skip if found. */    for (j = 0; j < i; j++)      {      if (active_states[j].offset == state_offset &&          active_states[j].count == current_state->count)        {        DPRINTF(("%.*sDuplicate state: skipped\n", rlevel*2-2, SP));        goto NEXT_ACTIVE_STATE;        }      }    /* The state offset is the offset to the opcode */    code = start_code + state_offset;    codevalue = *code;    /* If this opcode is followed by an inline character, load it. It is    tempting to test for the presence of a subject character here, but that    is wrong, because sometimes zero repetitions of the subject are    permitted.    We also use this mechanism for opcodes such as OP_TYPEPLUS that take an    argument that is not a data character - but is always one byte long. We    have to take special action to deal with  \P, \p, \H, \h, \V, \v and \X in    this case. To keep the other cases fast, convert these ones to new opcodes.    */    if (coptable[codevalue] > 0)      {      dlen = 1;#ifdef SUPPORT_UTF8      if (utf8) { GETCHARLEN(d, (code + coptable[codevalue]), dlen); } else#endif  /* SUPPORT_UTF8 */      d = code[coptable[codevalue]];      if (codevalue >= OP_TYPESTAR)        {        switch(d)          {          case OP_ANYBYTE: return PCRE_ERROR_DFA_UITEM;          case OP_NOTPROP:          case OP_PROP: codevalue += OP_PROP_EXTRA; break;          case OP_ANYNL: codevalue += OP_ANYNL_EXTRA; break;          case OP_EXTUNI: codevalue += OP_EXTUNI_EXTRA; break;          case OP_NOT_HSPACE:          case OP_HSPACE: codevalue += OP_HSPACE_EXTRA; break;          case OP_NOT_VSPACE:          case OP_VSPACE: codevalue += OP_VSPACE_EXTRA; break;          default: break;          }        }      }    else      {      dlen = 0;         /* Not strictly necessary, but compilers moan */      d = NOTACHAR;     /* if these variables are not set. */      }    /* Now process the individual opcodes */    switch (codevalue)      {/* ========================================================================== */      /* Reached a closing bracket. If not at the end of the pattern, carry      on with the next opcode. Otherwise, unless we have an empty string and      PCRE_NOTEMPTY is set, save the match data, shifting up all previous      matches so we always have the longest first. */      case OP_KET:      case OP_KETRMIN:      case OP_KETRMAX:      if (code != end_code)        {        ADD_ACTIVE(state_offset + 1 + LINK_SIZE, 0);        if (codevalue != OP_KET)          {          ADD_ACTIVE(state_offset - GET(code, 1), 0);          }        }      else if (ptr > current_subject || (md->moptions & PCRE_NOTEMPTY) == 0)        {        if (match_count < 0) match_count = (offsetcount >= 2)? 1 : 0;          else if (match_count > 0 && ++match_count * 2 >= offsetcount)            match_count = 0;        count = ((match_count == 0)? offsetcount : match_count * 2) - 2;        if (count > 0) memmove(offsets + 2, offsets, count * sizeof(int));        if (offsetcount >= 2)          {          offsets[0] = current_subject - start_subject;          offsets[1] = ptr - start_subject;          DPRINTF(("%.*sSet matched string = \"%.*s\"\n", rlevel*2-2, SP,            offsets[1] - offsets[0], current_subject));          }        if ((md->moptions & PCRE_DFA_SHORTEST) != 0)          {          DPRINTF(("%.*sEnd of internal_dfa_exec %d: returning %d\n"            "%.*s---------------------\n\n", rlevel*2-2, SP, rlevel,            match_count, rlevel*2-2, SP));          return match_count;          }        }      break;/* ========================================================================== */      /* These opcodes add to the current list of states without looking      at the current character. */      /*-----------------------------------------------------------------*/      case OP_ALT:      do { code += GET(code, 1); } while (*code == OP_ALT);      ADD_ACTIVE(code - start_code, 0);      break;      /*-----------------------------------------------------------------*/      case OP_BRA:      case OP_SBRA:      do        {        ADD_ACTIVE(code - start_code + 1 + LINK_SIZE, 0);        code += GET(code, 1);        }      while (*code == OP_ALT);      break;      /*-----------------------------------------------------------------*/      case OP_CBRA:      case OP_SCBRA:      ADD_ACTIVE(code - start_code + 3 + LINK_SIZE,  0);      code += GET(code, 1);      while (*code == OP_ALT)        {        ADD_ACTIVE(code - start_code + 1 + LINK_SIZE,  0);        code += GET(code, 1);        }      break;      /*-----------------------------------------------------------------*/      case OP_BRAZERO:      case OP_BRAMINZERO:      ADD_ACTIVE(state_offset + 1, 0);      code += 1 + GET(code, 2);      while (*code == OP_ALT) code += GET(code, 1);      ADD_ACTIVE(code - start_code + 1 + LINK_SIZE, 0);      break;      /*-----------------------------------------------------------------*/      case OP_CIRC:      if ((ptr == start_subject && (md->moptions & PCRE_NOTBOL) == 0) ||          ((ims & PCRE_MULTILINE) != 0 &&            ptr != end_subject &&            WAS_NEWLINE(ptr)))        { ADD_ACTIVE(state_offset + 1, 0); }      break;      /*-----------------------------------------------------------------*/      case OP_EOD:      if (ptr >= end_subject) { ADD_ACTIVE(state_offset + 1, 0); }      break;      /*-----------------------------------------------------------------*/      case OP_OPT:      ims = code[1];      ADD_ACTIVE(state_offset + 2, 0);      break;      /*-----------------------------------------------------------------*/      case OP_SOD:      if (ptr == start_subject) { ADD_ACTIVE(state_offset + 1, 0); }      break;      /*-----------------------------------------------------------------*/      case OP_SOM:      if (ptr == start_subject + start_offset) { ADD_ACTIVE(state_offset + 1, 0); }      break;/* ========================================================================== */      /* These opcodes inspect the next subject character, and sometimes      the previous one as well, but do not have an argument. The variable      clen contains the length of the current character and is zero if we are      at the end of the subject. */      /*-----------------------------------------------------------------*/      case OP_ANY:      if (clen > 0 && ((ims & PCRE_DOTALL) != 0 || !IS_NEWLINE(ptr)))        { ADD_NEW(state_offset + 1, 0); }      break;      /*-----------------------------------------------------------------*/      case OP_EODN:      if (clen == 0 || (IS_NEWLINE(ptr) && ptr == end_subject - md->nllen))        { ADD_ACTIVE(state_offset + 1, 0); }      break;      /*-----------------------------------------------------------------*/      case OP_DOLL:      if ((md->moptions & PCRE_NOTEOL) == 0)        {        if (clen == 0 ||            (IS_NEWLINE(ptr) &&               ((ims & PCRE_MULTILINE) != 0 || ptr == end_subject - md->nllen)            ))          { ADD_ACTIVE(state_offset + 1, 0); }        }      else if ((ims & PCRE_MULTILINE) != 0 && IS_NEWLINE(ptr))        { ADD_ACTIVE(state_offset + 1, 0); }      break;      /*-----------------------------------------------------------------*/      case OP_DIGIT:      case OP_WHITESPACE:      case OP_WORDCHAR:      if (clen > 0 && c < 256 &&            ((ctypes[c] & toptable1[codevalue]) ^ toptable2[codevalue]) != 0)        { ADD_NEW(state_offset + 1, 0); }      break;      /*-----------------------------------------------------------------*/      case OP_NOT_DIGIT:      case OP_NOT_WHITESPACE:      case OP_NOT_WORDCHAR:      if (clen > 0 && (c >= 256 ||            ((ctypes[c] & toptable1[codevalue]) ^ toptable2[codevalue]) != 0))        { ADD_NEW(state_offset + 1, 0); }      break;      /*-----------------------------------------------------------------*/      case OP_WORD_BOUNDARY:      case OP_NOT_WORD_BOUNDARY:        {        int left_word, right_word;        if (ptr > start_subject)          {          const uschar *temp = ptr - 1;#ifdef SUPPORT_UTF8          if (utf8) BACKCHAR(temp);#endif          GETCHARTEST(d, temp);          left_word = d < 256 && (ctypes[d] & ctype_word) != 0;          }        else left_word = 0;        if (clen > 0) right_word = c < 256 && (ctypes[c] & ctype_word) != 0;          else right_word = 0;        if ((left_word == right_word) == (codevalue == OP_NOT_WORD_BOUNDARY))          { ADD_ACTIVE(state_offset + 1, 0); }        }      break;      /*-----------------------------------------------------------------*/      /* Check the next character by Unicode property. We will get here only      if the support is in the binary; otherwise a compile-time error occurs.      */#ifdef SUPPORT_UCP      case OP_PROP:      case OP_NOTPROP:      if (clen > 0)        {        BOOL OK;        int category = _pcre_ucp_findprop(c, &chartype, &script);        switch(code[1])          {          case PT_ANY:          OK = TRUE;          break;          case PT_LAMP:          OK = chartype == ucp_Lu || chartype == ucp_Ll || chartype == ucp_Lt;          break;          case PT_GC:

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美aⅴ一区二区三区视频| 欧美欧美午夜aⅴ在线观看| 成人综合日日夜夜| 成人在线综合网站| 成人精品在线视频观看| 丁香亚洲综合激情啪啪综合| 国产精品一区二区三区四区| 精品一区二区免费看| 麻豆91免费观看| 久久 天天综合| 国产精品自拍一区| 国产成人av影院| 成人毛片在线观看| 91色视频在线| 欧美日韩一级黄| 69成人精品免费视频| 日韩一区二区三区在线视频| 日韩欧美二区三区| 久久免费的精品国产v∧| 国产精品情趣视频| 国产精品第四页| 亚洲一区二区欧美| 美女视频黄久久| 国产成都精品91一区二区三| 成人99免费视频| 欧美午夜不卡在线观看免费| 欧美电影在线免费观看| 精品国产人成亚洲区| 欧美激情一区二区三区蜜桃视频 | 欧美日韩高清一区| 日韩一区二区三区视频| 久久色在线观看| 亚洲欧美中日韩| 五月婷婷综合在线| 国产精品一二三区在线| 色呦呦日韩精品| 欧美一区二区三区四区久久| 久久久久九九视频| 一区二区三区在线播放| 看电视剧不卡顿的网站| 成人av在线看| 日韩一区二区三区观看| 中文字幕精品综合| 视频一区中文字幕国产| 国产激情偷乱视频一区二区三区| 在线观看中文字幕不卡| 精品国产凹凸成av人网站| 亚洲人成在线观看一区二区| 美日韩黄色大片| 97精品视频在线观看自产线路二| 91麻豆精品国产综合久久久久久| 亚洲国产成人一区二区三区| 石原莉奈一区二区三区在线观看| 成人性生交大片免费看在线播放| 欧美日韩精品电影| 久久精品在这里| 亚洲一区中文在线| 成人午夜电影网站| 日韩一卡二卡三卡| 亚洲精品成人在线| 久久99精品久久久久久| 欧美亚洲国产一区二区三区va| 国产日韩欧美在线一区| 日本视频一区二区| 色婷婷av一区二区| 国产欧美日韩精品在线| 蜜桃久久久久久久| 欧美日韩三级一区| 亚洲免费毛片网站| 粉嫩13p一区二区三区| 欧美大肚乱孕交hd孕妇| 亚洲综合激情网| 北条麻妃一区二区三区| 精品国产乱码久久久久久闺蜜| 亚洲国产精品久久艾草纯爱| 白白色亚洲国产精品| 久久久91精品国产一区二区三区| 青椒成人免费视频| 欧美日韩国产欧美日美国产精品| 亚洲视频中文字幕| 国产**成人网毛片九色| 欧美zozozo| 日韩精品1区2区3区| 欧美性猛片xxxx免费看久爱| 亚洲色图制服丝袜| 成人久久久精品乱码一区二区三区| 日韩一区二区三区在线视频| 午夜伦理一区二区| 欧美三级欧美一级| 亚洲制服欧美中文字幕中文字幕| 国产69精品久久久久777| 久久久久久久免费视频了| 精品一区二区三区欧美| 欧美一二三区在线观看| 三级欧美韩日大片在线看| 国产91在线观看| 欧美最猛性xxxxx直播| 国产日产亚洲精品系列| 国产精品18久久久久久久久| 欧美zozo另类异族| 精品一区二区三区免费毛片爱| 欧美精品乱码久久久久久按摩| 夜夜嗨av一区二区三区中文字幕 | 色999日韩国产欧美一区二区| 国产精品欧美综合在线| 不卡一二三区首页| 亚洲国产激情av| 99热99精品| 亚洲人成7777| 欧美性一级生活| 亚洲妇熟xx妇色黄| 欧美日韩日日夜夜| 视频一区视频二区中文| 欧美久久一二区| 美腿丝袜亚洲三区| 精品国产第一区二区三区观看体验| 韩国欧美国产一区| 国产精品私人影院| 色综合久久久久网| 婷婷久久综合九色国产成人 | 三级不卡在线观看| 色狠狠色狠狠综合| 亚洲综合男人的天堂| 欧美人牲a欧美精品| 日本成人在线电影网| 欧美tickling挠脚心丨vk| 精品一区二区三区香蕉蜜桃| 亚洲国产精品传媒在线观看| 色综合久久综合中文综合网| 午夜国产精品影院在线观看| 日韩午夜精品视频| 福利视频网站一区二区三区| 亚洲欧洲精品成人久久奇米网| 欧美主播一区二区三区美女| 蜜臂av日日欢夜夜爽一区| 久久精品亚洲精品国产欧美kt∨| 不卡一区在线观看| 婷婷激情综合网| 久久久久久夜精品精品免费| 色婷婷综合在线| 奇米一区二区三区| 国产精品传媒视频| 制服丝袜亚洲网站| 国产99精品视频| 亚洲国产精品一区二区www在线 | 亚洲在线视频网站| 日韩一级成人av| 成人午夜av影视| 午夜精品福利久久久| 久久精品一区蜜桃臀影院| 欧美亚洲自拍偷拍| 国产精品夜夜嗨| 一级日本不卡的影视| 欧美变态tickling挠脚心| 91年精品国产| 久久精品国产精品青草| 一区二区三区四区亚洲| xfplay精品久久| 精品视频一区 二区 三区| 国产精品夜夜爽| 日本亚洲天堂网| 亚洲人妖av一区二区| 日韩美一区二区三区| 91在线观看下载| 另类小说综合欧美亚洲| 亚洲精品国产无套在线观| 久久综合九色综合97婷婷女人 | 欧美老年两性高潮| www.欧美.com| 国模一区二区三区白浆| 午夜视频一区在线观看| 中文字幕一区二区日韩精品绯色| 日韩一区二区三区免费看| 日本电影亚洲天堂一区| 国产精品一区二区三区99| 亚洲成人动漫一区| 亚洲欧美另类小说| 国产日韩欧美麻豆| 日韩精品影音先锋| 欧美日韩成人综合| 99久久国产免费看| 国产成人免费视| 婷婷六月综合亚洲| 亚洲天堂av老司机| 国产精品毛片无遮挡高清| 欧美大片免费久久精品三p| 欧美日韩一区不卡| 欧美中文字幕一区| 91亚洲永久精品| 成人激情av网| 成人美女视频在线观看| 福利电影一区二区三区| 国产乱码精品一区二区三区av| 天天影视色香欲综合网老头| 亚洲一区二区欧美| 亚洲国产中文字幕| 亚洲高清免费观看| 亚洲va欧美va人人爽| 亚洲成av人综合在线观看| 一二三区精品视频|