Home
last modified time | relevance | path

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

/PHP-8.0/ext/standard/
H A Dversioning.c100 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 Durl.c108 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.0/tests/classes/
H A D__set_data_corrupt.phpt8 public $pp = array('t'=>null);
15 return $this->pp[$prop];
20 $this->pp[$prop] = '';
/PHP-8.0/ext/fileinfo/libmagic/
H A Dprint.c246 char *pp; in file_fmttime() local
267 pp = php_asctime_r(tm, buf); in file_fmttime()
269 if (pp == NULL) in file_fmttime()
271 pp[strcspn(pp, "\n")] = '\0'; in file_fmttime()
272 return pp; in file_fmttime()
H A Dfuncs.c76 file_checkfield(char *msg, size_t mlen, const char *what, const char **pp) in file_checkfield() argument
78 const char *p = *pp; in file_checkfield()
84 *pp = p; in file_checkfield()
/PHP-8.0/ext/pcre/
H A Dphp_pcre.c618 char *p, *pp; in pcre_get_compiled_regex_cache_ex() local
676 delimiter = pp[5]; in pcre_get_compiled_regex_cache_ex()
679 pp = p; in pcre_get_compiled_regex_cache_ex()
686 if (*pp == '\\' && pp[1] != 0) pp++; in pcre_get_compiled_regex_cache_ex()
689 pp++; in pcre_get_compiled_regex_cache_ex()
699 if (*pp == '\\' && pp[1] != 0) pp++; in pcre_get_compiled_regex_cache_ex()
704 pp++; in pcre_get_compiled_regex_cache_ex()
708 if (*pp == 0) { in pcre_get_compiled_regex_cache_ex()
728 pp++; in pcre_get_compiled_regex_cache_ex()
733 switch (*pp++) { in pcre_get_compiled_regex_cache_ex()
[all …]
/PHP-8.0/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-8.0/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-8.0/ext/opcache/Optimizer/
H A Dzend_ssa.c1022 zend_ssa_phi **pp = &ssa_blocks[j].phis; in zend_build_ssa() local
1023 while (*pp) { in zend_build_ssa()
1024 if ((*pp)->pi < 0) { in zend_build_ssa()
1027 pp = &(*pp)->next; in zend_build_ssa()
1029 phi->next = *pp; in zend_build_ssa()
1030 *pp = phi; in zend_build_ssa()
/PHP-8.0/Zend/
H A Dzend_execute.h158 ZEND_API zend_result zval_update_constant(zval *pp);
159 ZEND_API zend_result zval_update_constant_ex(zval *pp, zend_class_entry *scope);
H A Dzend_execute_API.c641 ZEND_API zend_result zval_update_constant(zval *pp) /* {{{ */ in zval_update_constant() argument
643 …return zval_update_constant_ex(pp, EG(current_execute_data) ? zend_get_executed_scope() : CG(activ… in zval_update_constant()
/PHP-8.0/ext/opcache/jit/libudis86/
H A Ddecode.c1120 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.0/ext/hash/tests/
H A Dfnv1a64.phpt244 array( 'pp)fcE;JCr)3j}{=A/s^d^v*%FUL$QrtC|\\(BwRfk\\yVZvs|', '26761cf7ed795ba8' ),
/PHP-8.0/ext/opcache/jit/dynasm/
H A Dminilua.c841 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.0/ext/fileinfo/
H A Dlibmagic.patch3213 - pp = asctime_r(tm, buf);
3214 + pp = php_asctime_r(tm, buf);
3216 if (pp == NULL)
/PHP-8.0/
H A DREADME.REDIST.BINS216 Modeling and Computer Simulation, Vol. 8, No. 1, January 1998, pp 3-30.
/PHP-8.0/ext/fileinfo/tests/
H A Dmagic私はガラスを食べられます7828 # Reference: https://mc.pp.se/dc/ip0000.bin.html
28148 # Type: SE Linux policy modules *.pp reference policy
H A Dmagic7828 # Reference: https://mc.pp.se/dc/ip0000.bin.html
28148 # Type: SE Linux policy modules *.pp reference policy

Completed in 230 milliseconds