/external/pcre/dist2/src/ |
D | pcre2_internal.h | 1679 2+IMM2_SIZE, 2+IMM2_SIZE, /* upto, minupto ** mode */ \ 1680 2+IMM2_SIZE, /* exact */ \ 1681 2, 2, 2, 2+IMM2_SIZE, /* *+, ++, ?+, upto+ */ \ 1683 2+IMM2_SIZE, 2+IMM2_SIZE, /* upto I, minupto I */ \ 1684 2+IMM2_SIZE, /* exact I */ \ 1685 2, 2, 2, 2+IMM2_SIZE, /* *+I, ++I, ?+I, upto+I */ \ 1688 2+IMM2_SIZE, 2+IMM2_SIZE, /* NOT upto, minupto */ \ 1689 2+IMM2_SIZE, /* NOT exact */ \ 1690 2, 2, 2, 2+IMM2_SIZE, /* Possessive NOT *, +, ?, upto */ \ 1692 2+IMM2_SIZE, 2+IMM2_SIZE, /* NOT upto I, minupto I */ \ [all …]
|
D | pcre2_study.c | 113 if (*code == OP_CBRA || *code == OP_CBRAPOS) cc += IMM2_SIZE; in find_minlength() 310 cc += 2 + IMM2_SIZE; in find_minlength() 318 cc += 2 + IMM2_SIZE + ((cc[1 + IMM2_SIZE] == OP_PROP in find_minlength() 319 || cc[1 + IMM2_SIZE] == OP_NOTPROP)? 2 : 0); in find_minlength() 382 if (cc[1 + IMM2_SIZE] == OP_PROP in find_minlength() 383 || cc[1 + IMM2_SIZE] == OP_NOTPROP) cc += 2; in find_minlength() 424 cc += 1 + 2 * IMM2_SIZE; in find_minlength() 452 int count = GET2(cc, 1+IMM2_SIZE); in find_minlength() 495 cc += 1 + 2*IMM2_SIZE; in find_minlength() 532 cc += 1 + IMM2_SIZE; in find_minlength() [all …]
|
D | pcre2_dfa_match.c | 130 1+IMM2_SIZE, 1+IMM2_SIZE, /* upto, minupto */ 131 1+IMM2_SIZE, /* exact */ 132 1, 1, 1, 1+IMM2_SIZE, /* *+, ++, ?+, upto+ */ 134 1+IMM2_SIZE, 1+IMM2_SIZE, /* upto I, minupto I */ 135 1+IMM2_SIZE, /* exact I */ 136 1, 1, 1, 1+IMM2_SIZE, /* *+I, ++I, ?+I, upto+I */ 139 1+IMM2_SIZE, 1+IMM2_SIZE, /* NOT upto, minupto */ 140 1+IMM2_SIZE, /* NOT exact */ 141 1, 1, 1, 1+IMM2_SIZE, /* NOT *+, ++, ?+, upto+ */ 143 1+IMM2_SIZE, 1+IMM2_SIZE, /* NOT upto I, minupto I */ [all …]
|
D | pcre2_printint.c | 415 PCRE2_SPTR entry = nametable + (GET2(code, 1) * nesize) + IMM2_SIZE; in pcre2_printint() 418 fprintf(f, ">%d", GET2(code, 1 + IMM2_SIZE)); in pcre2_printint() 432 PCRE2_SPTR entry = nametable + (GET2(code, 1) * nesize) + IMM2_SIZE; in pcre2_printint() 435 fprintf(f, ">%d", GET2(code, 1 + IMM2_SIZE)); in pcre2_printint() 502 extra = print_char(f, code + 1 + IMM2_SIZE, utf); in pcre2_printint() 514 if (code[1 + IMM2_SIZE] == OP_PROP || code[1 + IMM2_SIZE] == OP_NOTPROP) in pcre2_printint() 516 print_prop(f, code + IMM2_SIZE + 1, " ", " "); in pcre2_printint() 519 else fprintf(f, " %s", OP_names[code[1 + IMM2_SIZE]]); in pcre2_printint() 574 extra = print_char(f, code + 1 + IMM2_SIZE, utf); in pcre2_printint() 602 PCRE2_SPTR entry = nametable + (GET2(code, 1) * nesize) + IMM2_SIZE; in pcre2_printint() [all …]
|
D | pcre2_find_bracket.c | 129 if (code[1 + IMM2_SIZE] == OP_PROP || code[1 + IMM2_SIZE] == OP_NOTPROP) in PRIV()
|
D | pcre2_substring.c | 487 int c = PRIV(strcmp)(stringname, entry + IMM2_SIZE); in pcre2_substring_nametable_scan() 497 if (PRIV(strcmp)(stringname, (first - entrysize + IMM2_SIZE)) != 0) break; in pcre2_substring_nametable_scan() 502 if (PRIV(strcmp)(stringname, (last + entrysize + IMM2_SIZE)) != 0) break; in pcre2_substring_nametable_scan()
|
D | pcre2_compile.c | 914 cc += IMM2_SIZE; in find_fixedlength() 1084 cc += 2 + IMM2_SIZE; in find_fixedlength() 1092 if (cc[1 + IMM2_SIZE] == OP_PROP || cc[1 + IMM2_SIZE] == OP_NOTPROP) in find_fixedlength() 1094 cc += 1 + IMM2_SIZE + 1; in find_fixedlength() 1158 if (GET2(cc,1) != GET2(cc,1+IMM2_SIZE)) goto ISNOTFIXED; in find_fixedlength() 1160 cc += 1 + 2 * IMM2_SIZE; in find_fixedlength() 1657 if (code[1 + IMM2_SIZE] == OP_PROP || code[1 + IMM2_SIZE] == OP_NOTPROP) in could_be_empty_branch() 1721 if (utf && HAS_EXTRALEN(code[1 + IMM2_SIZE])) code += GET_EXTRALEN(code[1 + IMM2_SIZE]); in could_be_empty_branch() 2519 if (code[1 + IMM2_SIZE] == OP_PROP || code[1 + IMM2_SIZE] == OP_NOTPROP) in find_recurse() 3696 if (namelen + IMM2_SIZE + 1 > cb->name_entry_size) in scan_for_captures() [all …]
|
D | pcre2_intmodedep.h | 70 #undef IMM2_SIZE 192 #define IMM2_SIZE 2 macro 197 #define IMM2_SIZE 1 macro 543 #define PUT2INC(a,n,d) PUT2(a,n,d), a += IMM2_SIZE
|
D | pcre2_jit_compile.c | 834 cc += 1 + IMM2_SIZE; in check_opcode_types() 840 cc += 1 + LINK_SIZE + IMM2_SIZE; in check_opcode_types() 854 cc += 1 + IMM2_SIZE; in check_opcode_types() 860 count = GET2(cc, 1 + IMM2_SIZE); in check_opcode_types() 867 cc += 1 + 2 * IMM2_SIZE; in check_opcode_types() 1043 cc += IMM2_SIZE; in detect_fast_forward_skip() 1075 cc += 1 + LINK_SIZE + ((*cc == OP_CBRA) ? IMM2_SIZE : 0); in detect_fast_fail() 1140 max = GET2(cc, 1 + IMM2_SIZE); in get_class_iterator_size() 1350 bracketlen = 1 + LINK_SIZE + IMM2_SIZE; in set_private_data_ptrs() 1370 bracketlen = 1 + LINK_SIZE + IMM2_SIZE; in set_private_data_ptrs() [all …]
|
D | pcre2_auto_possess.c | 332 code += IMM2_SIZE; in get_chr_property_list() 485 end += 1 + 2 * IMM2_SIZE; in get_chr_property_list() 1191 if (code[1 + IMM2_SIZE] == OP_PROP || code[1 + IMM2_SIZE] == OP_NOTPROP) in PRIV()
|
D | pcre2_match.c | 1377 int count = GET2(ecode, 1 + IMM2_SIZE); in match() 1397 int count = GET2(ecode, 1 + IMM2_SIZE); in match() 1512 ecode += 1 + IMM2_SIZE; in match() 2771 int count = GET2(ecode, 1+IMM2_SIZE); in match() 2773 ecode += 1 + 2*IMM2_SIZE; in match() 2792 ecode += 1 + IMM2_SIZE; in match() 2816 max = GET2(ecode, 1 + IMM2_SIZE); in match() 2818 ecode += 1 + 2 * IMM2_SIZE; in match() 3016 max = GET2(ecode, 1 + IMM2_SIZE); in match() 3018 ecode += 1 + 2 * IMM2_SIZE; in match() [all …]
|
D | pcre2_serialize.c | 215 dst_re->name_entry_size > MAX_NAME_SIZE + IMM2_SIZE + 1 || in pcre2_serialize_decode()
|