/external/pcre/dist2/src/ |
pcre2_find_bracket.c | 129 if (code[1 + IMM2_SIZE] == OP_PROP || code[1 + IMM2_SIZE] == OP_NOTPROP)
|
pcre2_printint.c | 415 PCRE2_SPTR entry = nametable + (GET2(code, 1) * nesize) + IMM2_SIZE; 418 fprintf(f, ">%d", GET2(code, 1 + IMM2_SIZE)); 432 PCRE2_SPTR entry = nametable + (GET2(code, 1) * nesize) + IMM2_SIZE; 435 fprintf(f, ">%d", GET2(code, 1 + IMM2_SIZE)); 502 extra = print_char(f, code + 1 + IMM2_SIZE, utf); 514 if (code[1 + IMM2_SIZE] == OP_PROP || code[1 + IMM2_SIZE] == OP_NOTPROP) 516 print_prop(f, code + IMM2_SIZE + 1, " ", " "); 519 else fprintf(f, " %s", OP_names[code[1 + IMM2_SIZE]]); 574 extra = print_char(f, code + 1 + IMM2_SIZE, utf) [all...] |
pcre2_study.c | 113 if (*code == OP_CBRA || *code == OP_CBRAPOS) cc += IMM2_SIZE; 310 cc += 2 + IMM2_SIZE; 318 cc += 2 + IMM2_SIZE + ((cc[1 + IMM2_SIZE] == OP_PROP 319 || cc[1 + IMM2_SIZE] == OP_NOTPROP)? 2 : 0); 382 if (cc[1 + IMM2_SIZE] == OP_PROP 383 || cc[1 + IMM2_SIZE] == OP_NOTPROP) cc += 2; 424 cc += 1 + 2 * IMM2_SIZE; 452 int count = GET2(cc, 1+IMM2_SIZE); 495 cc += 1 + 2*IMM2_SIZE; [all...] |
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 * [all...] |
pcre2_substring.c | 487 int c = PRIV(strcmp)(stringname, entry + IMM2_SIZE); 497 if (PRIV(strcmp)(stringname, (first - entrysize + IMM2_SIZE)) != 0) break; 502 if (PRIV(strcmp)(stringname, (last + entrysize + IMM2_SIZE)) != 0) break;
|
pcre2_compile.c | [all...] |
pcre2_auto_possess.c | 332 code += IMM2_SIZE; 485 end += 1 + 2 * IMM2_SIZE; [all...] |
pcre2_intmodedep.h | 70 #undef IMM2_SIZE 192 #define IMM2_SIZE 2 197 #define IMM2_SIZE 1 543 #define PUT2INC(a,n,d) PUT2(a,n,d), a += IMM2_SIZE [all...] |
pcre2_jit_compile.c | 834 cc += 1 + IMM2_SIZE; 840 cc += 1 + LINK_SIZE + IMM2_SIZE; 854 cc += 1 + IMM2_SIZE; 860 count = GET2(cc, 1 + IMM2_SIZE); 867 cc += 1 + 2 * IMM2_SIZE; 1043 cc += IMM2_SIZE; 1075 cc += 1 + LINK_SIZE + ((*cc == OP_CBRA) ? IMM2_SIZE : 0); 1140 max = GET2(cc, 1 + IMM2_SIZE); [all...] |
pcre2_serialize.c | 215 dst_re->name_entry_size > MAX_NAME_SIZE + IMM2_SIZE + 1 ||
|
pcre2_match.c | [all...] |