Home
last modified time | relevance | path

Searched refs:pp (Results 1 – 19 of 19) sorted by relevance

/PHP-7.4/ext/standard/
H A Dversioning.c102 special_forms_t *pp; in compare_special_version_forms() local
104 for (pp = special_forms; pp && pp->name; pp++) { in compare_special_version_forms()
105 if (strncmp(form1, pp->name, strlen(pp->name)) == 0) { in compare_special_version_forms()
106 found1 = pp->order; in compare_special_version_forms()
110 for (pp = special_forms; pp && pp->name; pp++) { in compare_special_version_forms()
111 if (strncmp(form2, pp->name, strlen(pp->name)) == 0) { in compare_special_version_forms()
112 found2 = pp->order; in compare_special_version_forms()
H A Durl.c115 char const *s, *e, *p, *pp, *ue; in php_url_parse_ex2() local
194 pp = p; in php_url_parse_ex2()
196 while (pp < ue && pp - p < 6 && isdigit(*pp)) { in php_url_parse_ex2()
197 pp++; in php_url_parse_ex2()
200 if (pp - p > 0 && pp - p < 6 && (pp == ue || *pp == '/')) { in php_url_parse_ex2()
203 memcpy(port_buf, p, (pp - p)); in php_url_parse_ex2()
204 port_buf[pp - p] = '\0'; in php_url_parse_ex2()
216 } else if (p == pp && pp == ue) { in php_url_parse_ex2()
235 if ((pp = memchr(s, ':', (p-s)))) { in php_url_parse_ex2()
239 pp++; in php_url_parse_ex2()
[all …]
/PHP-7.4/tests/classes/
H A D__set_data_corrupt.phpt8 public $pp = array('t'=>null);
15 return $this->pp[$prop];
20 $this->pp[$prop] = '';
/PHP-7.4/ext/fileinfo/libmagic/
H A Dprint.c238 char *pp; in file_fmttime() local
259 pp = php_asctime_r(tm, buf); in file_fmttime()
261 if (pp == NULL) in file_fmttime()
263 pp[strcspn(pp, "\n")] = '\0'; in file_fmttime()
264 return pp; in file_fmttime()
/PHP-7.4/ext/pcre/
H A Dphp_pcre.c591 char *p, *pp; in pcre_get_compiled_regex_cache_ex() local
650 delimiter = pp[5]; in pcre_get_compiled_regex_cache_ex()
653 pp = p; in pcre_get_compiled_regex_cache_ex()
660 if (*pp == '\\' && pp[1] != 0) pp++; in pcre_get_compiled_regex_cache_ex()
663 pp++; in pcre_get_compiled_regex_cache_ex()
673 if (*pp == '\\' && pp[1] != 0) pp++; in pcre_get_compiled_regex_cache_ex()
678 pp++; in pcre_get_compiled_regex_cache_ex()
682 if (*pp == 0) { in pcre_get_compiled_regex_cache_ex()
702 pp++; in pcre_get_compiled_regex_cache_ex()
707 switch (*pp++) { in pcre_get_compiled_regex_cache_ex()
[all …]
/PHP-7.4/win32/
H A Dglob.c818 register char **pp; local
821 pp = pglob->gl_pathv + pglob->gl_offs;
822 for (i = pglob->gl_pathc; i--; ++pp)
823 if (*pp)
824 free(*pp);
/PHP-7.4/ext/pcre/pcre2lib/
H A Dpcre2_dfa_match.c2904 PCRE2_SPTR pp = start_subject + local_offsets[rc+1]; in internal_dfa_match() local
2905 while (p < pp) if (NOT_FIRSTCU(*p++)) charcount--; in internal_dfa_match()
3018 PCRE2_SPTR pp = local_ptr; in internal_dfa_match() local
3019 charcount = (PCRE2_SIZE)(pp - p); in internal_dfa_match()
3121 PCRE2_SPTR pp = start_subject + local_offsets[1]; in internal_dfa_match() local
3122 while (p < pp) if (NOT_FIRSTCU(*p++)) charcount--; in internal_dfa_match()
3840 uint32_t pp = UCHAR21INCTEST(p); in pcre2_dfa_match() local
3841 if (pp == req_cu || pp == req_cu2) { p--; break; } in pcre2_dfa_match()
3844 PCRE2_SPTR pp = p; in pcre2_dfa_match()
3845 p = memchr(pp, req_cu, end_subject - pp); in pcre2_dfa_match()
[all …]
H A Dpcre2_convert.c132 PCRE2_UCHAR *pp = p; in convert_posix() local
161 convlength += p - pp; in convert_posix()
163 pp = p; in convert_posix()
356 convlength += p - pp; /* Final segment */ in convert_posix()
H A Dpcre2_compile.c6757 PCRE2_SPTR pp; in compile_branch() local
6768 pp = cb->start_pattern + offset; in compile_branch()
6782 if (*pp == delimiter && pp[1] == delimiter) in compile_branch()
6785 pp += 2; in compile_branch()
6788 else *callout_string++ = *pp++; in compile_branch()
9825 uint32_t c, pp; in pcre2_compile() local
9857 pp = skipatstart; in pcre2_compile()
9858 if (!IS_DIGIT(ptr[pp])) in pcre2_compile()
9861 ptr += pp; in pcre2_compile()
9864 while (IS_DIGIT(ptr[pp])) in pcre2_compile()
[all …]
H A Dpcre2_match.c419 const uint32_t *pp = PRIV(ucd_caseless_sets) + ur->caseset; in match_ref() local
422 if (c < *pp) return -1; /* No match */ in match_ref()
423 if (c == *pp++) break; in match_ref()
6976 uint32_t pp = UCHAR21INCTEST(p); in pcre2_match() local
6977 if (pp == req_cu || pp == req_cu2) { p--; break; } in pcre2_match()
6980 PCRE2_SPTR pp = p; in pcre2_match()
6981 p = memchr(pp, req_cu, end_subject - pp); in pcre2_match()
6984 p = memchr(pp, req_cu2, end_subject - pp); in pcre2_match()
/PHP-7.4/Zend/
H A Dzend_execute.h146 ZEND_API int zval_update_constant(zval *pp);
147 ZEND_API int zval_update_constant_ex(zval *pp, zend_class_entry *scope);
H A Dzend_execute_API.c627 ZEND_API int zval_update_constant(zval *pp) /* {{{ */ in zval_update_constant() argument
629 …return zval_update_constant_ex(pp, EG(current_execute_data) ? zend_get_executed_scope() : CG(activ… in zval_update_constant()
/PHP-7.4/ext/opcache/Optimizer/
H A Dzend_ssa.c990 zend_ssa_phi **pp = &ssa_blocks[j].phis; in zend_build_ssa() local
991 while (*pp) { in zend_build_ssa()
992 if ((*pp)->pi < 0) { in zend_build_ssa()
995 pp = &(*pp)->next; in zend_build_ssa()
997 phi->next = *pp; in zend_build_ssa()
998 *pp = phi; in zend_build_ssa()
/PHP-7.4/ext/mbstring/
H A Dmbstring.c4167 pp = str; \
4168 ee = pp + len; \
4169 while ((pp = memchr(pp, '\0', (ee - pp)))) { \
4170 *pp = ' '; \
4371 char *pp, *ee; in PHP_FUNCTION() local
/PHP-7.4/ext/hash/tests/
H A Dfnv1a64.phpt244 array( 'pp)fcE;JCr)3j}{=A/s^d^v*%FUL$QrtC|\\(BwRfk\\yVZvs|', '26761cf7ed795ba8' ),
/PHP-7.4/ext/fileinfo/
H A Dlibmagic.patch3134 - pp = asctime_r(tm, buf);
3135 + pp = php_asctime_r(tm, buf);
3137 if (pp == NULL)
/PHP-7.4/
H A DREADME.REDIST.BINS217 Modeling and Computer Simulation, Vol. 8, No. 1, January 1998, pp 3-30.
/PHP-7.4/ext/fileinfo/tests/
H A Dmagic私はガラスを食べられます7353 # Reference: https://mc.pp.se/dc/ip0000.bin.html
25347 # Type: SE Linux policy modules *.pp reference policy
H A Dmagic7353 # Reference: https://mc.pp.se/dc/ip0000.bin.html
25347 # Type: SE Linux policy modules *.pp reference policy

Completed in 196 milliseconds