• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/pcre-8.31/

Lines Matching defs:scode

2362     const pcre_uchar *scode;
2367 for (scode = cd->start_workspace; scode < cd->hwm; scode += LINK_SIZE)
2368 if (GET(scode, 0) == code + 1 - cd->start_code) return TRUE;
2373 scode = cd->start_code + GET(code, 1);
2374 if (GET(scode, 1) == 0) return TRUE; /* Unclosed */
2380 if (could_be_empty_branch(scode, endcode, utf, cd))
2385 scode += GET(scode, 1);
2387 while (*scode == OP_ALT);
5418 pcre_uchar *scode = bracode;
5421 if (could_be_empty_branch(scode, ketcode, utf, cd))
5426 scode += GET(scode, 1);
5428 while (*scode == OP_ALT);
7341 const pcre_uchar *scode = first_significant_code(
7343 register int op = *scode;
7350 if (!is_anchored(scode, bracket_map, backref_map)) return FALSE;
7358 int n = GET2(scode, 1+LINK_SIZE);
7360 if (!is_anchored(scode, new_map, backref_map)) return FALSE;
7368 if (!is_anchored(scode, bracket_map, backref_map)) return FALSE;
7377 if (scode[1] != OP_ALLANY || (bracket_map & backref_map) != 0)
7418 const pcre_uchar *scode = first_significant_code(
7420 register int op = *scode;
7429 scode += 1 + LINK_SIZE;
7430 if (*scode == OP_CALLOUT) scode += PRIV(OP_lengths)[OP_CALLOUT];
7431 switch (*scode)
7441 if (!is_startline(scode, bracket_map, backref_map)) return FALSE;
7442 do scode += GET(scode, 1); while (*scode == OP_ALT);
7443 scode += 1 + LINK_SIZE;
7446 scode = first_significant_code(scode, FALSE);
7447 op = *scode;
7455 if (!is_startline(scode, bracket_map, backref_map)) return FALSE;
7463 int n = GET2(scode, 1+LINK_SIZE);
7465 if (!is_startline(scode, new_map, backref_map)) return FALSE;
7472 if (!is_startline(scode, bracket_map, backref_map)) return FALSE;
7480 if (scode[1] != OP_ANY || (bracket_map & backref_map) != 0) return FALSE;
7524 const pcre_uchar *scode = first_significant_code(code + 1+LINK_SIZE + xl,
7526 register int op = *scode;
7543 if ((d = find_firstassertedchar(scode, op == OP_ASSERT)) < 0)
7549 scode += IMM2_SIZE;
7557 if (c < 0) c = scode[1];
7558 else if (c != scode[1]) return -1;
7562 scode += IMM2_SIZE;
7570 if (c < 0) c = scode[1] | REQ_CASELESS;
7571 else if (c != scode[1]) return -1;