Home
last modified time | relevance | path

Searched refs:PRIV (Results 1 – 14 of 14) sorted by relevance

/PHP-5.4/ext/pcre/pcrelib/
H A Dpcre_ucd.c35 const ucd_record PRIV(ucd_records)[] = {{0,0,0,0,0 }};
36 const pcre_uint8 PRIV(ucd_stage1)[] = {0};
37 const pcre_uint16 PRIV(ucd_stage2)[] = {0};
38 const pcre_uint32 PRIV(ucd_caseless_sets)[] = {0};
55 const pcre_uint32 PRIV(ucd_caseless_sets)[] = {
82 const ucd_record PRIV(ucd_records)[] = { /* 5760 bytes, record size 8 */
805 const pcre_uint8 PRIV(ucd_stage1)[] = { /* 8704 bytes */
1352 const pcre_uint16 PRIV(ucd_stage2)[] = { /* 58112 bytes, block = 128 */
H A Dpcre_xclass.c67 PRIV(xclass)(pcre_uint32 c, const pcre_uchar *data, BOOL utf) in PRIV() function
150 if ((data[1] == PRIV(ucp_gentype)[prop->chartype]) == isprop) in PRIV()
163 if ((PRIV(ucp_gentype)[prop->chartype] == ucp_L || in PRIV()
164 PRIV(ucp_gentype)[prop->chartype] == ucp_N) == isprop) in PRIV()
182 if ((PRIV(ucp_gentype)[prop->chartype] == ucp_Z) == isprop) in PRIV()
189 if ((PRIV(ucp_gentype)[prop->chartype] == ucp_L || in PRIV()
190 PRIV(ucp_gentype)[prop->chartype] == ucp_N || c == CHAR_UNDERSCORE) in PRIV()
222 if ((PRIV(ucp_gentype)[prop->chartype] != ucp_Z && in PRIV()
223 (PRIV(ucp_gentype)[prop->chartype] != ucp_C || in PRIV()
236 (PRIV(ucp_gentype)[prop->chartype] != ucp_C || in PRIV()
[all …]
H A Dpcre_ord2utf8.c68 PRIV(ord2utf)(pcre_uint32 cvalue, pcre_uchar *buffer) in PRIV() function
74 for (i = 0; i < PRIV(utf8_table1_size); i++) in PRIV()
75 if ((int)cvalue <= PRIV(utf8_table1)[i]) break; in PRIV()
82 *buffer = PRIV(utf8_table2)[i] | cvalue; in PRIV()
H A Dpcre_internal.h2618 #ifndef PRIV
2619 #define PRIV(name) _pcre_##name macro
2625 #ifndef PRIV
2626 #define PRIV(name) _pcre16_##name macro
2632 #ifndef PRIV
2633 #define PRIV(name) _pcre32_##name macro
2705 PRIV(strcmp_uc_uc)((str1), (str2))
2707 PRIV(strcmp_uc_c8)((str1), (str2))
2729 (utf ? PRIV(strcmp_uc_uc_utf)((str1), (str2)) : PRIV(strcmp_uc_uc)((str1), (str2)))
2731 (utf ? PRIV(strcmp_uc_c8_utf)((str1), (str2)) : PRIV(strcmp_uc_c8)((str1), (str2)))
[all …]
H A Dpcre_study.c195 cc += PRIV(OP_lengths)[*cc]; in find_minlength()
204 cc += PRIV(OP_lengths)[*cc]; in find_minlength()
315 cc += PRIV(OP_lengths)[op]; in find_minlength()
323 cc += PRIV(OP_lengths)[op]; in find_minlength()
337 cc += PRIV(OP_lengths)[OP_CLASS]; in find_minlength()
339 cc += PRIV(OP_lengths)[OP_CLASS]; in find_minlength()
570 cc += PRIV(OP_lengths)[op]; in find_minlength()
582 cc += PRIV(OP_lengths)[op] + cc[1]; in find_minlength()
594 cc += PRIV(OP_lengths)[op]; in find_minlength()
646 (void)PRIV(ord2utf)(c, buff); in set_table_bit()
[all …]
H A Dpcre_chartables.c29 const pcre_uint8 PRIV(default_tables)[] = {
H A Dpcre_newline.c76 PRIV(is_newline)(PCRE_PUCHAR ptr, int type, PCRE_PUCHAR endptr, int *lenptr, in PRIV() function
151 PRIV(was_newline)(PCRE_PUCHAR ptr, int type, PCRE_PUCHAR startptr, int *lenptr, in PRIV() function
H A Dpcre_tables.c59 const pcre_uint8 PRIV(OP_lengths)[] = { OP_LENGTHS };
64 const pcre_uint32 PRIV(hspace_list)[] = { HSPACE_LIST };
81 const int PRIV(utf8_table1)[] =
84 const int PRIV(utf8_table1_size) = sizeof(PRIV(utf8_table1)) / sizeof(int);
95 const pcre_uint8 PRIV(utf8_table4)[] = {
107 const pcre_uint32 PRIV(ucp_gentype)[] = {
152 const pcre_uint32 PRIV(ucp_gbtable[]) = {
182 const int PRIV(ucp_typerange)[] = {
380 const char PRIV(utt_names)[] =
551 const ucp_type_table PRIV(utt)[] = {
[all …]
H A Dpcre_valid_utf8.c107 PRIV(valid_utf)(PCRE_PUCHAR string, int length, int *erroroffset) in PRIV() function
137 ab = PRIV(utf8_table4)[c & 0x3f]; /* Number of additional bytes */ in PRIV()
H A Dpcre_compile.c1539 top = PRIV(utt_size); in get_ucp()
1545 r = STRCMP_UC_C8(name, PRIV(utt_names) + PRIV(utt)[i].name_offset); in get_ucp()
1802 cc += PRIV(OP_lengths)[*cc]; in find_fixedlength()
1838 cc += PRIV(OP_lengths)[*cc]; in find_fixedlength()
2080 code += PRIV(OP_lengths)[c]; in PRIV()
2090 code += PRIV(OP_lengths)[c]; in PRIV()
2132 code += PRIV(OP_lengths)[c]; in PRIV()
2277 code += PRIV(OP_lengths)[c]; in find_recurse()
2468 code += PRIV(OP_lengths)[c]; in could_be_empty_branch()
3138 code += PRIV(OP_lengths)[c]; in compare_opcodes()
[all …]
H A Dpcre_fullinfo.c123 PRIV(jit_get_size)(extra_data->executable_jit) : 0; in pcre_fullinfo()
203 *((const pcre_uint8 **)where) = (const pcre_uint8 *)(PRIV(default_tables)); in pcre_fullinfo()
H A Dpcre_config.c138 *((const char **)where) = PRIV(jit_get_target)(); in pcre_config()
H A Dpcre_exec.c823 ecode += PRIV(OP_lengths)[*ecode] + ecode[1]; in match()
1072 ecode += PRIV(OP_lengths)[*ecode]; in match()
1327 ecode += PRIV(OP_lengths)[OP_CALLOUT]; in match()
1328 codelink -= PRIV(OP_lengths)[OP_CALLOUT]; in match()
2624 cp = PRIV(ucd_caseless_sets) + ecode[2]; in match()
3203 if (!PRIV(xclass)(c, data, utf)) break; in match()
3419 oclength = PRIV(ord2utf)(othercase, occhars); in match()
4310 cp = PRIV(ucd_caseless_sets) + prop_value; in match()
5066 cp = PRIV(ucd_caseless_sets) + prop_value; in match()
5573 cp = PRIV(ucd_caseless_sets) + prop_value; in match()
[all …]
H A Dpcre_jit_compile.c675 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()
4559 pp = PRIV(ucd_caseless_sets) + ur->caseset; in do_utf_caselesscmp()
4809 other_cases = PRIV(ucd_caseless_sets) + cc[1]; in compile_xclass_matchingpath()
5054 c = PRIV(ucp_typerange)[(int)cc[1] * 2]; in compile_xclass_matchingpath()
5101 other_cases = PRIV(ucd_caseless_sets) + cc[1]; in compile_xclass_matchingpath()
9780 tables = PRIV(default_tables); in PRIV()
10524 PRIV(jit_free)(void *executable_funcs) in PRIV() function
10538 PRIV(jit_get_size)(void *executable_funcs) in PRIV() function
[all …]

Completed in 153 milliseconds