/PHP-7.0/ext/pcre/pcrelib/ |
H A D | pcre_ucd.c | 33 const ucd_record PRIV(ucd_records)[] = {{0,0,0,0,0 }}; 34 const pcre_uint8 PRIV(ucd_stage1)[] = {0}; 35 const pcre_uint16 PRIV(ucd_stage2)[] = {0}; 36 const pcre_uint32 PRIV(ucd_caseless_sets)[] = {0}; 53 const pcre_uint32 PRIV(ucd_caseless_sets)[] = { 80 const ucd_record PRIV(ucd_records)[] = { /* 5760 bytes, record size 8 */ 803 const pcre_uint8 PRIV(ucd_stage1)[] = { /* 8704 bytes */ 1350 const pcre_uint16 PRIV(ucd_stage2)[] = { /* 58112 bytes, block = 128 */
|
H A D | pcre_xclass.c | 65 PRIV(xclass)(pcre_uint32 c, const pcre_uchar *data, BOOL utf) in PRIV() function 148 if ((data[1] == PRIV(ucp_gentype)[prop->chartype]) == isprop) in PRIV() 161 if ((PRIV(ucp_gentype)[prop->chartype] == ucp_L || in PRIV() 162 PRIV(ucp_gentype)[prop->chartype] == ucp_N) == isprop) in PRIV() 180 if ((PRIV(ucp_gentype)[prop->chartype] == ucp_Z) == isprop) in PRIV() 187 if ((PRIV(ucp_gentype)[prop->chartype] == ucp_L || in PRIV() 188 PRIV(ucp_gentype)[prop->chartype] == ucp_N || c == CHAR_UNDERSCORE) in PRIV() 220 if ((PRIV(ucp_gentype)[prop->chartype] != ucp_Z && in PRIV() 221 (PRIV(ucp_gentype)[prop->chartype] != ucp_C || in PRIV() 234 (PRIV(ucp_gentype)[prop->chartype] != ucp_C || in PRIV() [all …]
|
H A D | pcre_ord2utf8.c | 66 PRIV(ord2utf)(pcre_uint32 cvalue, pcre_uchar *buffer) in PRIV() function 72 for (i = 0; i < PRIV(utf8_table1_size); i++) in PRIV() 73 if ((int)cvalue <= PRIV(utf8_table1)[i]) break; in PRIV() 80 *buffer = PRIV(utf8_table2)[i] | cvalue; in PRIV()
|
H A D | pcre_internal.h | 2623 #ifndef PRIV 2624 #define PRIV(name) _pcre_##name macro 2630 #ifndef PRIV 2631 #define PRIV(name) _pcre16_##name macro 2637 #ifndef PRIV 2638 #define PRIV(name) _pcre32_##name macro 2710 PRIV(strcmp_uc_uc)((str1), (str2)) 2712 PRIV(strcmp_uc_c8)((str1), (str2)) 2734 (utf ? PRIV(strcmp_uc_uc_utf)((str1), (str2)) : PRIV(strcmp_uc_uc)((str1), (str2))) 2736 (utf ? PRIV(strcmp_uc_c8_utf)((str1), (str2)) : PRIV(strcmp_uc_c8)((str1), (str2))) [all …]
|
H A D | pcre_study.c | 197 cc += PRIV(OP_lengths)[*cc]; in find_minlength() 206 cc += PRIV(OP_lengths)[*cc]; in find_minlength() 317 cc += PRIV(OP_lengths)[op]; in find_minlength() 325 cc += PRIV(OP_lengths)[op]; in find_minlength() 339 cc += PRIV(OP_lengths)[OP_CLASS]; in find_minlength() 341 cc += PRIV(OP_lengths)[OP_CLASS]; in find_minlength() 574 cc += PRIV(OP_lengths)[op]; in find_minlength() 586 cc += PRIV(OP_lengths)[op] + cc[1]; in find_minlength() 598 cc += PRIV(OP_lengths)[op]; in find_minlength() 650 (void)PRIV(ord2utf)(c, buff); in set_table_bit() [all …]
|
H A D | pcre_chartables.c | 27 const pcre_uint8 PRIV(default_tables)[] = {
|
H A D | pcre_newline.c | 74 PRIV(is_newline)(PCRE_PUCHAR ptr, int type, PCRE_PUCHAR endptr, int *lenptr, in PRIV() function 149 PRIV(was_newline)(PCRE_PUCHAR ptr, int type, PCRE_PUCHAR startptr, int *lenptr, in PRIV() function
|
H A D | pcre_tables.c | 57 const pcre_uint8 PRIV(OP_lengths)[] = { OP_LENGTHS }; 62 const pcre_uint32 PRIV(hspace_list)[] = { HSPACE_LIST }; 79 const int PRIV(utf8_table1)[] = 82 const int PRIV(utf8_table1_size) = sizeof(PRIV(utf8_table1)) / sizeof(int); 93 const pcre_uint8 PRIV(utf8_table4)[] = { 105 const pcre_uint32 PRIV(ucp_gentype)[] = { 150 const pcre_uint32 PRIV(ucp_gbtable[]) = { 180 const int PRIV(ucp_typerange)[] = { 378 const char PRIV(utt_names)[] = 549 const ucp_type_table PRIV(utt)[] = { [all …]
|
H A D | pcre_printint.c | 57 #define PRIV(name) name macro 142 int a = PRIV(utf8_table4)[c & 0x3f]; /* Number of additional bytes */ in print_char() 144 c = (c & PRIV(utf8_table3)[a]) << s; in print_char() 238 for (i = PRIV(utt_size) - 1; i >= 0; i--) in get_ucpname() 240 if (ptype == PRIV(utt)[i].type && pvalue == PRIV(utt)[i].value) break; in get_ucpname() 242 return (i >= 0)? PRIV(utt_names) + PRIV(utt)[i].name_offset : "??"; in get_ucpname() 275 const pcre_uint32 *p = PRIV(ucd_caseless_sets) + code[2]; in print_prop()
|
H A D | pcre_valid_utf8.c | 105 PRIV(valid_utf)(PCRE_PUCHAR string, int length, int *erroroffset) in PRIV() function 135 ab = PRIV(utf8_table4)[c & 0x3f]; /* Number of additional bytes */ in PRIV()
|
H A D | pcre_compile.c | 1556 top = PRIV(utt_size); in get_ucp() 1562 r = STRCMP_UC_C8(name, PRIV(utt_names) + PRIV(utt)[i].name_offset); in get_ucp() 1855 cc += PRIV(OP_lengths)[*cc]; in find_fixedlength() 2097 code += PRIV(OP_lengths)[c]; in PRIV() 2107 code += PRIV(OP_lengths)[c]; in PRIV() 2149 code += PRIV(OP_lengths)[c]; in PRIV() 2294 code += PRIV(OP_lengths)[c]; in find_recurse() 2485 code += PRIV(OP_lengths)[c]; in could_be_empty_branch() 3155 code += PRIV(OP_lengths)[c]; in compare_opcodes() 3197 code += PRIV(OP_lengths)[c]; in compare_opcodes() [all …]
|
H A D | pcre_fullinfo.c | 121 PRIV(jit_get_size)(extra_data->executable_jit) : 0; in pcre_fullinfo() 201 *((const pcre_uint8 **)where) = (const pcre_uint8 *)(PRIV(default_tables)); in pcre_fullinfo()
|
H A D | pcre_config.c | 136 *((const char **)where) = PRIV(jit_get_target)(); in pcre_config()
|
H A D | pcre_exec.c | 821 ecode += PRIV(OP_lengths)[*ecode] + ecode[1]; in match() 1070 ecode += PRIV(OP_lengths)[*ecode]; in match() 1325 ecode += PRIV(OP_lengths)[OP_CALLOUT]; in match() 1326 codelink -= PRIV(OP_lengths)[OP_CALLOUT]; in match() 2622 cp = PRIV(ucd_caseless_sets) + ecode[2]; in match() 3201 if (!PRIV(xclass)(c, data, utf)) break; in match() 3417 oclength = PRIV(ord2utf)(othercase, occhars); in match() 4308 cp = PRIV(ucd_caseless_sets) + prop_value; in match() 5064 cp = PRIV(ucd_caseless_sets) + prop_value; in match() 5571 cp = PRIV(ucd_caseless_sets) + prop_value; in match() [all …]
|
H A D | pcre_jit_compile.c | 675 return cc + PRIV(OP_lengths)[*cc]; in next_opcode() 733 cc += PRIV(OP_lengths)[*cc]; in next_opcode() 753 return cc + PRIV(OP_lengths)[*cc] - 1; in next_opcode() 4592 pp = PRIV(ucd_caseless_sets) + ur->caseset; in do_utf_caselesscmp() 4842 other_cases = PRIV(ucd_caseless_sets) + cc[1]; in compile_xclass_matchingpath() 5091 c = PRIV(ucp_typerange)[(int)cc[1] * 2]; in compile_xclass_matchingpath() 5138 other_cases = PRIV(ucd_caseless_sets) + cc[1]; in compile_xclass_matchingpath() 9822 tables = PRIV(default_tables); in PRIV() 10567 PRIV(jit_free)(void *executable_funcs) in PRIV() function 10581 PRIV(jit_get_size)(void *executable_funcs) in PRIV() function [all …]
|