/PHP-8.3/ext/standard/ |
H A D | versioning.c | 100 special_forms_t *pp; in compare_special_version_forms() local 102 for (pp = special_forms; pp && pp->name; pp++) { in compare_special_version_forms() 103 if (strncmp(form1, pp->name, strlen(pp->name)) == 0) { in compare_special_version_forms() 104 found1 = pp->order; in compare_special_version_forms() 108 for (pp = special_forms; pp && pp->name; pp++) { in compare_special_version_forms() 109 if (strncmp(form2, pp->name, strlen(pp->name)) == 0) { in compare_special_version_forms() 110 found2 = pp->order; in compare_special_version_forms()
|
H A D | url.c | 108 char const *s, *e, *p, *pp, *ue; in php_url_parse_ex2() local 187 pp = p; in php_url_parse_ex2() 189 while (pp < ue && pp - p < 6 && isdigit(*pp)) { in php_url_parse_ex2() 190 pp++; in php_url_parse_ex2() 193 if (pp - p > 0 && pp - p < 6 && (pp == ue || *pp == '/')) { in php_url_parse_ex2() 196 memcpy(port_buf, p, (pp - p)); in php_url_parse_ex2() 197 port_buf[pp - p] = '\0'; in php_url_parse_ex2() 209 } else if (p == pp && pp == ue) { in php_url_parse_ex2() 228 if ((pp = memchr(s, ':', (p-s)))) { in php_url_parse_ex2() 232 pp++; in php_url_parse_ex2() [all …]
|
/PHP-8.3/tests/classes/ |
H A D | __set_data_corrupt.phpt | 8 public $pp = array('t'=>null); 15 return $this->pp[$prop]; 20 $this->pp[$prop] = '';
|
/PHP-8.3/Zend/tests/ |
H A D | gh10251.phpt | 14 $pp = ""; 15 $op = $pp & "";
|
/PHP-8.3/ext/fileinfo/libmagic/ |
H A D | print.c | 273 char *pp; in file_fmtdatetime() local 294 pp = php_asctime_r(tm, buf); in file_fmtdatetime() 296 if (pp == NULL) in file_fmtdatetime() 298 pp[strcspn(pp, "\n")] = '\0'; in file_fmtdatetime() 299 return pp; in file_fmtdatetime()
|
H A D | funcs.c | 75 file_checkfield(char *msg, size_t mlen, const char *what, const char **pp) in file_checkfield() argument 77 const char *p = *pp; in file_checkfield() 83 *pp = p; in file_checkfield()
|
/PHP-8.3/ext/pcre/ |
H A D | php_pcre.c | 603 char *p, *pp; in pcre_get_compiled_regex_cache_ex() local 661 delimiter = pp[5]; in pcre_get_compiled_regex_cache_ex() 664 pp = p; in pcre_get_compiled_regex_cache_ex() 671 if (*pp == '\\' && pp + 1 < end_p) pp++; in pcre_get_compiled_regex_cache_ex() 674 pp++; in pcre_get_compiled_regex_cache_ex() 684 if (*pp == '\\' && pp + 1 < end_p) pp++; in pcre_get_compiled_regex_cache_ex() 689 pp++; in pcre_get_compiled_regex_cache_ex() 693 if (pp >= end_p) { in pcre_get_compiled_regex_cache_ex() 711 pp++; in pcre_get_compiled_regex_cache_ex() 716 switch (*pp++) { in pcre_get_compiled_regex_cache_ex() [all …]
|
/PHP-8.3/win32/ |
H A D | glob.c | 780 register char **pp; in globfree() local 783 pp = pglob->gl_pathv + pglob->gl_offs; in globfree() 784 for (i = pglob->gl_pathc; i--; ++pp) in globfree() 785 if (*pp) in globfree() 786 free(*pp); in globfree()
|
/PHP-8.3/ext/pcre/pcre2lib/ |
H A D | pcre2_dfa_match.c | 2961 PCRE2_SPTR pp = start_subject + local_offsets[rc+1]; in internal_dfa_match() local 2962 while (p < pp) if (NOT_FIRSTCU(*p++)) charcount--; in internal_dfa_match() 3075 PCRE2_SPTR pp = local_ptr; in internal_dfa_match() local 3076 charcount = (PCRE2_SIZE)(pp - p); in internal_dfa_match() 3178 PCRE2_SPTR pp = start_subject + local_offsets[1]; in internal_dfa_match() local 3179 while (p < pp) if (NOT_FIRSTCU(*p++)) charcount--; in internal_dfa_match() 3918 uint32_t pp = UCHAR21INCTEST(p); in pcre2_dfa_match() local 3919 if (pp == req_cu || pp == req_cu2) { p--; break; } in pcre2_dfa_match() 3922 PCRE2_SPTR pp = p; in pcre2_dfa_match() 3923 p = memchr(pp, req_cu, end_subject - pp); in pcre2_dfa_match() [all …]
|
H A D | pcre2_convert.c | 131 PCRE2_UCHAR *pp = p; in convert_posix() local 160 convlength += p - pp; in convert_posix() 162 pp = p; in convert_posix() 355 convlength += p - pp; /* Final segment */ in convert_posix()
|
H A D | pcre2_compile.c | 6869 PCRE2_SPTR pp; in compile_branch() local 6880 pp = cb->start_pattern + offset; in compile_branch() 6894 if (*pp == delimiter && pp[1] == delimiter) in compile_branch() 6897 pp += 2; in compile_branch() 6900 else *callout_string++ = *pp++; in compile_branch() 9951 uint32_t c, pp; in pcre2_compile() local 9983 pp = skipatstart; in pcre2_compile() 9984 if (!IS_DIGIT(ptr[pp])) in pcre2_compile() 9987 ptr += pp; in pcre2_compile() 9990 while (IS_DIGIT(ptr[pp])) in pcre2_compile() [all …]
|
H A D | pcre2_match.c | 421 const uint32_t *pp = PRIV(ucd_caseless_sets) + ur->caseset; in match_ref() local 424 if (c < *pp) return -1; /* No match */ in match_ref() 425 if (c == *pp++) break; in match_ref() 7213 uint32_t pp = UCHAR21INCTEST(p); in pcre2_match() local 7214 if (pp == req_cu || pp == req_cu2) { p--; break; } in pcre2_match() 7217 PCRE2_SPTR pp = p; in pcre2_match() 7218 p = memchr(pp, req_cu, end_subject - pp); in pcre2_match() 7221 p = memchr(pp, req_cu2, end_subject - pp); in pcre2_match()
|
/PHP-8.3/Zend/ |
H A D | zend_execute.h | 204 ZEND_API zend_result ZEND_FASTCALL zval_update_constant(zval *pp); 205 ZEND_API zend_result ZEND_FASTCALL zval_update_constant_ex(zval *pp, zend_class_entry *scope); 206 ZEND_API zend_result ZEND_FASTCALL zval_update_constant_with_ctx(zval *pp, zend_class_entry *scope,…
|
H A D | zend_execute_API.c | 730 ZEND_API zend_result ZEND_FASTCALL zval_update_constant(zval *pp) /* {{{ */ in zval_update_constant() argument 732 …return zval_update_constant_ex(pp, EG(current_execute_data) ? zend_get_executed_scope() : CG(activ… in zval_update_constant()
|
/PHP-8.3/Zend/Optimizer/ |
H A D | zend_ssa.c | 1015 zend_ssa_phi **pp = &ssa_blocks[j].phis; in zend_build_ssa() local 1016 while (*pp) { in zend_build_ssa() 1017 if ((*pp)->pi < 0) { in zend_build_ssa() 1020 pp = &(*pp)->next; in zend_build_ssa() 1022 phi->next = *pp; in zend_build_ssa() 1023 *pp = phi; in zend_build_ssa()
|
/PHP-8.3/ext/opcache/jit/libudis86/ |
H A D | decode.c | 1120 uint8_t pp, m; in decode_vex() local 1128 pp = u->vex_b2 & 0x3; in decode_vex() 1129 index = (pp << 2) | m; in decode_vex()
|
/PHP-8.3/ext/hash/tests/ |
H A D | fnv1a64.phpt | 244 array( 'pp)fcE;JCr)3j}{=A/s^d^v*%FUL$QrtC|\\(BwRfk\\yVZvs|', '26761cf7ed795ba8' ),
|
/PHP-8.3/ext/opcache/jit/dynasm/ |
H A D | minilua.c | 841 GCObject**pp=&L->openupval; 844 while(*pp!=NULL&&(p=ngcotouv(*pp))->v>=level){ 850 pp=&p->next; 856 uv->next=*pp; 857 *pp=obj2gco(uv);
|
/PHP-8.3/ext/fileinfo/ |
H A D | libmagic.patch | 2714 - pp = asctime_r(tm, buf); 2715 + pp = php_asctime_r(tm, buf); 2717 if (pp == NULL)
|
/PHP-8.3/ |
H A D | README.REDIST.BINS | 218 Modeling and Computer Simulation, Vol. 8, No. 1, January 1998, pp 3-30.
|
/PHP-8.3/ext/fileinfo/tests/ |
H A D | magic | 9223 # Reference: https://mc.pp.se/dc/ip0000.bin.html 34846 # Type: SE Linux policy modules *.pp reference policy
|
H A D | magic私はガラスを食べられます | 9223 # Reference: https://mc.pp.se/dc/ip0000.bin.html 34846 # Type: SE Linux policy modules *.pp reference policy
|