Home
last modified time | relevance | path

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

12

/PHP-7.3/ext/pcre/pcre2lib/
H A Dpcre2_ucd.c36 const ucd_record PRIV(ucd_records)[] = {{0,0,0,0,0 }};
37 const uint16_t PRIV(ucd_stage1)[] = {0};
38 const uint16_t PRIV(ucd_stage2)[] = {0};
39 const uint32_t PRIV(ucd_caseless_sets)[] = {0};
42 const char *PRIV(unicode_version) = "11.0.0";
49 const ucd_record PRIV(dummy_ucd_record)[] = {{
72 const uint32_t PRIV(ucd_caseless_sets)[] = {
107 const ucd_record PRIV(ucd_records)[] = { /* 6832 bytes, record size 8 */
964 const uint16_t PRIV(ucd_stage1)[] = { /* 17408 bytes */
1511 const uint16_t PRIV(ucd_stage2)[] = { /* 68352 bytes, block = 128 */
H A Dpcre2_xclass.c69 PRIV(xclass)(uint32_t c, PCRE2_SPTR data, BOOL utf) in PRIV() function
151 if ((data[1] == PRIV(ucp_gentype)[prop->chartype]) == isprop) in PRIV()
164 if ((PRIV(ucp_gentype)[prop->chartype] == ucp_L || in PRIV()
165 PRIV(ucp_gentype)[prop->chartype] == ucp_N) == isprop) in PRIV()
183 if ((PRIV(ucp_gentype)[prop->chartype] == ucp_Z) == isprop) in PRIV()
190 if ((PRIV(ucp_gentype)[prop->chartype] == ucp_L || in PRIV()
191 PRIV(ucp_gentype)[prop->chartype] == ucp_N || c == CHAR_UNDERSCORE) in PRIV()
223 if ((PRIV(ucp_gentype)[prop->chartype] != ucp_Z && in PRIV()
224 (PRIV(ucp_gentype)[prop->chartype] != ucp_C || in PRIV()
237 (PRIV(ucp_gentype)[prop->chartype] != ucp_C || in PRIV()
[all …]
H A Dpcre2_ord2utf.c59 PRIV(ord2utf)(uint32_t cvalue, PCRE2_UCHAR *buffer) in PRIV() function
81 PRIV(ord2utf)(uint32_t cvalue, PCRE2_UCHAR *buffer) in PRIV() function
87 for (i = 0; i < PRIV(utf8_table1_size); i++) in PRIV()
88 if ((int)cvalue <= PRIV(utf8_table1)[i]) break; in PRIV()
95 *buffer = PRIV(utf8_table2)[i] | cvalue; in PRIV()
H A Dpcre2_string_utils.c63 PRIV(memmove)(void *d, const void *s, size_t n) in PRIV() function
102 PRIV(strcmp)(PCRE2_SPTR str1, PCRE2_SPTR str2) in PRIV() function
130 PRIV(strcmp_c8)(PCRE2_SPTR str1, const char *str2) in PRIV() function
157 PRIV(strncmp)(PCRE2_SPTR str1, PCRE2_SPTR str2, size_t len) in PRIV() function
186 PRIV(strncmp_c8)(PCRE2_SPTR str1, const char *str2, size_t len) in PRIV() function
209 PRIV(strlen)(PCRE2_SPTR str) in PRIV() function
229 PRIV(strcpy_c8)(PCRE2_UCHAR *str1, const char *str2) in PRIV() function
H A Dpcre2_jit_misc.c53 PRIV(jit_free_rodata)(void *current, void *allocator_data) in PRIV() function
78 PRIV(jit_free)(void *executable_jit, pcre2_memctl *memctl) in PRIV() function
93 PRIV(jit_free_rodata)(functions->read_only_data_heads[i], allocator_data); in PRIV()
145 jit_stack = PRIV(memctl_malloc)(sizeof(pcre2_real_jit_stack), (pcre2_memctl *)gcontext); in pcre2_jit_stack_create()
200 PRIV(jit_get_target)(void) in PRIV() function
215 PRIV(jit_get_size)(void *executable_jit) in PRIV() function
H A Dpcre2_config.c155 const char *v = PRIV(jit_get_target)(); in pcre2_config()
157 strlen(v) : PRIV(strcpy_c8)((PCRE2_UCHAR *)where, v))); in pcre2_config()
197 const char *v = PRIV(unicode_version); in pcre2_config()
202 strlen(v) : PRIV(strcpy_c8)((PCRE2_UCHAR *)where, v))); in pcre2_config()
239 strlen(v) : PRIV(strcpy_c8)((PCRE2_UCHAR *)where, v))); in pcre2_config()
H A Dpcre2_internal.h174 #ifndef PRIV
175 #define PRIV(name) _pcre2_##name macro
196 #define memmove(a, b, c) PRIV(memmove)(a, b, c)
1755 #define REAL_GET_UCD(ch) (PRIV(ucd_records) + \
1756 PRIV(ucd_stage2)[PRIV(ucd_stage1)[(int)(ch) / UCD_BLOCK_SIZE] * \
1761 PRIV(dummy_ucd_record) : REAL_GET_UCD(ch))
1809 extern const int PRIV(utf8_table1)[];
1811 extern const int PRIV(utf8_table2)[];
1812 extern const int PRIV(utf8_table3)[];
1813 extern const uint8_t PRIV(utf8_table4)[];
[all …]
H A Dpcre2_context.c86 PRIV(memctl_malloc)(size_t size, pcre2_memctl *memctl) in PRIV() function
133 const pcre2_compile_context PRIV(default_compile_context) = {
137 PRIV(default_tables), /* Character tables */
150 pcre2_compile_context *ccontext = PRIV(memctl_malloc)( in pcre2_compile_context_create()
153 *ccontext = PRIV(default_compile_context); in pcre2_compile_context_create()
163 const pcre2_match_context PRIV(default_match_context) = {
182 pcre2_match_context *mcontext = PRIV(memctl_malloc)( in pcre2_match_context_create()
185 *mcontext = PRIV(default_match_context); in pcre2_match_context_create()
195 const pcre2_convert_context PRIV(default_convert_context) = {
212 pcre2_convert_context *ccontext = PRIV(memctl_malloc)( in pcre2_convert_context_create()
[all …]
H A Dpcre2_find_bracket.c70 PRIV(find_bracket)(PCRE2_SPTR code, BOOL utf, int number) in PRIV() function
91 code += PRIV(OP_lengths)[c]; in PRIV()
101 code += PRIV(OP_lengths)[c]; in PRIV()
144 code += PRIV(OP_lengths)[c]; in PRIV()
H A Dpcre2_extuni.c60 PRIV(extuni)(uint32_t c, PCRE2_SPTR eptr, PCRE2_SPTR start_subject, in PRIV() function
92 PRIV(extuni)(uint32_t c, PCRE2_SPTR eptr, PCRE2_SPTR start_subject, in PRIV() function
103 if ((PRIV(ucp_gbtable)[lgb] & (1 << rgb)) == 0) break; in PRIV()
H A Dpcre2_auto_possess.c210 return (pdata == PRIV(ucp_gentype)[prop->chartype]) == negated; in check_char_prop()
221 return (PRIV(ucp_gentype)[prop->chartype] == ucp_L || in check_char_prop()
242 return (PRIV(ucp_gentype)[prop->chartype] == ucp_L || in check_char_prop()
243 PRIV(ucp_gentype)[prop->chartype] == ucp_N || in check_char_prop()
247 p = PRIV(ucd_caseless_sets) + prop->caseset; in check_char_prop()
429 clist_src = PRIV(ucd_caseless_sets) + code[1]; in get_chr_property_list()
551 code += PRIV(OP_lengths)[c]; in compare_opcodes()
623 code += PRIV(OP_lengths)[c]; in compare_opcodes()
632 code += PRIV(OP_lengths)[c]; in compare_opcodes()
663 code += PRIV(OP_lengths)[c]; in compare_opcodes()
[all …]
H A Dpcre2_study.c263 cc += PRIV(OP_lengths)[*cc]; in find_minlength()
276 cc += PRIV(OP_lengths)[*cc]; in find_minlength()
387 cc += PRIV(OP_lengths)[op]; in find_minlength()
395 cc += PRIV(OP_lengths)[op]; in find_minlength()
409 cc += PRIV(OP_lengths)[OP_CLASS]; in find_minlength()
411 cc += PRIV(OP_lengths)[OP_CLASS]; in find_minlength()
701 cc += PRIV(OP_lengths)[op]; in find_minlength()
726 cc += PRIV(OP_lengths)[op]; in find_minlength()
796 (void)PRIV(ord2utf)(c, buff); in set_table_bit()
848 (void)PRIV(ord2utf)(c, buff); in set_type_bits()
[all …]
H A Dpcre2_pattern_info.c192 PRIV(jit_get_size)(re->executable_jit) : 0; in pcre2_pattern_info()
361 cc += PRIV(OP_lengths)[*cc]; in pcre2_callout_enumerate()
380 cc += PRIV(OP_lengths)[*cc]; in pcre2_callout_enumerate()
397 cc += PRIV(OP_lengths)[*cc] + cc[1]; in pcre2_callout_enumerate()
409 cc += PRIV(OP_lengths)[*cc]; in pcre2_callout_enumerate()
426 cc += PRIV(OP_lengths)[*cc]; in pcre2_callout_enumerate()
H A Dpcre2_chartables.c23 const uint8_t PRIV(default_tables)[] = {
H A Dpcre2_printint.c143 int a = PRIV(utf8_table4)[c & 0x3f]; /* Number of additional bytes */ in print_char()
145 c = (c & PRIV(utf8_table3)[a]) << s; in print_char()
240 for (i = PRIV(utt_size) - 1; i >= 0; i--) in get_ucpname()
242 if (ptype == PRIV(utt)[i].type && pvalue == PRIV(utt)[i].value) break; in get_ucpname()
244 return (i >= 0)? PRIV(utt_names) + PRIV(utt)[i].name_offset : "??"; in get_ucpname()
282 const uint32_t *p = PRIV(ucd_caseless_sets) + code[2]; in print_prop()
619 for (i = 0; PRIV(callout_start_delims)[i] != 0; i++) in pcre2_printint()
620 if (c == PRIV(callout_start_delims)[i]) in pcre2_printint()
622 c = PRIV(callout_end_delims)[i]; in pcre2_printint()
H A Dpcre2_substitute.c131 erc = PRIV(check_escape)(&ptr, ptrend, &ch, &errorcode, in find_text_end()
269 if (length == PCRE2_ZERO_TERMINATED) length = PRIV(strlen)(subject); in pcre2_substitute()
270 if (rlength == PCRE2_ZERO_TERMINATED) rlength = PRIV(strlen)(replacement); in pcre2_substitute()
278 rc = PRIV(valid_utf)(replacement, rlength, &(match_data->rightchar)); in pcre2_substitute()
570 if (PRIV(strcmp_c8)(name, STRING_MARK) == 0) in pcre2_substitute()
696 if (PRIV(ucp_gentype)[type] == ucp_L && in pcre2_substitute()
712 if (utf) chlen = PRIV(ord2utf)(ch, temp); else in pcre2_substitute()
762 rc = PRIV(check_escape)(&ptr, repend, &ch, &errorcode, in pcre2_substitute()
798 if (PRIV(ucp_gentype)[type] == ucp_L && in pcre2_substitute()
814 if (utf) chlen = PRIV(ord2utf)(ch, temp); else in pcre2_substitute()
H A Dpcre2_valid_utf.c63 PRIV(valid_utf)(PCRE2_SPTR string, PCRE2_SIZE length, PCRE2_SIZE *erroroffset) in PRIV() function
94 PRIV(valid_utf)(PCRE2_SPTR string, PCRE2_SIZE length, PCRE2_SIZE *erroroffset) in PRIV() function
155 ab = PRIV(utf8_table4)[c & 0x3f]; /* Number of additional bytes (1-5) */ in PRIV()
H A Dpcre2_dfa_match.c353 (PCRE2_SIZE)PRIV(OP_lengths)[OP_CALLOUT] : in do_callout()
1171 OK = PRIV(ucp_gentype)[prop->chartype] == code[2]; in internal_dfa_match()
1186 PRIV(ucp_gentype)[prop->chartype] == ucp_N; in internal_dfa_match()
1215 cp = PRIV(ucd_caseless_sets) + code[2]; in internal_dfa_match()
1444 PRIV(ucp_gentype)[prop->chartype] == ucp_N; in internal_dfa_match()
1473 cp = PRIV(ucd_caseless_sets) + code[3]; in internal_dfa_match()
1685 PRIV(ucp_gentype)[prop->chartype] == ucp_N; in internal_dfa_match()
1714 cp = PRIV(ucd_caseless_sets) + code[3]; in internal_dfa_match()
1951 PRIV(ucp_gentype)[prop->chartype] == ucp_N; in internal_dfa_match()
3361 mb->heap_limit = PRIV(default_match_context).heap_limit; in pcre2_dfa_match()
[all …]
H A Dpcre2_newline.c79 PRIV(is_newline)(PCRE2_SPTR ptr, uint32_t type, PCRE2_SPTR endptr, in PRIV() function
169 PRIV(was_newline)(PCRE2_SPTR ptr, uint32_t type, PCRE2_SPTR startptr, in PRIV() function
H A Dpcre2_tables.c73 const uint32_t PRIV(callout_start_delims)[] = {
78 const uint32_t PRIV(callout_end_delims[]) = {
100 const int PRIV(utf8_table1)[] =
103 const int PRIV(utf8_table1_size) = sizeof(PRIV(utf8_table1)) / sizeof(int);
114 const uint8_t PRIV(utf8_table4)[] = {
127 const uint32_t PRIV(ucp_gentype)[] = {
185 const uint32_t PRIV(ucp_gbtable)[] = {
213 const int PRIV(ucp_typerange)[] = {
434 const char PRIV(utt_names)[] =
628 const ucp_type_table PRIV(utt)[] = {
[all …]
H A Dpcre2_substring.c217 yield = PRIV(memctl_malloc)(sizeof(pcre2_memctl) + in pcre2_substring_get_bynumber()
397 memp = PRIV(memctl_malloc)(size, (pcre2_memctl *)match_data); in pcre2_substring_list_get()
492 int c = PRIV(strcmp)(stringname, entry + IMM2_SIZE); in pcre2_substring_nametable_scan()
502 if (PRIV(strcmp)(stringname, (first - entrysize + IMM2_SIZE)) != 0) break; in pcre2_substring_nametable_scan()
507 if (PRIV(strcmp)(stringname, (last + entrysize + IMM2_SIZE)) != 0) break; in pcre2_substring_nametable_scan()
H A Dpcre2_serialize.c85 &gcontext->memctl : &PRIV(default_compile_context).memctl; in pcre2_serialize_encode()
168 &gcontext->memctl : &PRIV(default_compile_context).memctl; in pcre2_serialize_decode()
215 dst_re = (pcre2_real_code *)PRIV(memctl_malloc)(blocksize, in pcre2_serialize_decode()
H A Dpcre2_compile.c1988 top = PRIV(utt_size); in get_ucp()
1994 r = PRIV(strcmp_c8)(name, PRIV(utt_names) + PRIV(utt)[i].name_offset); in get_ucp()
1997 *ptypeptr = PRIV(utt)[i].type; in get_ucp()
1998 *pdataptr = PRIV(utt)[i].value; in get_ucp()
4390 code += PRIV(OP_lengths)[*code]; in first_significant_code()
4405 code += PRIV(OP_lengths)[*code]; in first_significant_code()
4551 PRIV(ucd_caseless_sets) + rc, oc); in add_to_class_internal()
6314 code += PRIV(OP_lengths)[OP_CALLOUT]; in compile_branch()
8116 code += PRIV(OP_lengths)[c]; in find_recurse()
9206 patlen = PRIV(strlen)(pattern); in pcre2_compile()
[all …]
H A Dpcre2_match_data.c61 yield = PRIV(memctl_malloc)( in pcre2_match_data_create()
/PHP-7.3/ext/reflection/tests/
H A DReflectionClassConstant_basic1.phpt40 private const PRIV = "keepOut";
46 reflectClassConstant("TestClass", "PRIV");
47 reflectClassConstant($instance, "PRIV");
121 Reflecting on class constant TestClass::PRIV
124 string(45) "Constant [ private string PRIV ] { keepOut }
127 string(45) "Constant [ private string PRIV ] { keepOut }
130 Constant [ private string PRIV ] { keepOut }
134 string(4) "PRIV"
155 Reflecting on class constant TestClass::PRIV
164 Constant [ private string PRIV ] { keepOut }
[all …]

Completed in 116 milliseconds

12