Home
last modified time | relevance | path

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

/php-src/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-src/tests/classes/
H A D__set_data_corrupt.phpt8 public $pp = array('t'=>null);
15 return $this->pp[$prop];
20 $this->pp[$prop] = '';
/php-src/Zend/tests/
H A Dgh10251.phpt14 $pp = "";
15 $op = $pp & "";
/php-src/ext/fileinfo/libmagic/
H A Dprint.c274 char *pp; in file_fmtdatetime() local
298 pp = php_asctime_r(tm, buf); in file_fmtdatetime()
300 if (pp == NULL) in file_fmtdatetime()
302 pp[strcspn(pp, "\n")] = '\0'; in file_fmtdatetime()
303 return pp; in file_fmtdatetime()
H A Dfuncs.c75 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-src/ext/pcre/
H A Dphp_pcre.c602 char *p, *pp; in pcre_get_compiled_regex_cache_ex() local
660 delimiter = pp[5]; in pcre_get_compiled_regex_cache_ex()
663 pp = p; in pcre_get_compiled_regex_cache_ex()
670 if (*pp == '\\' && pp + 1 < end_p) pp++; in pcre_get_compiled_regex_cache_ex()
673 pp++; in pcre_get_compiled_regex_cache_ex()
683 if (*pp == '\\' && pp + 1 < end_p) pp++; in pcre_get_compiled_regex_cache_ex()
688 pp++; in pcre_get_compiled_regex_cache_ex()
692 if (pp >= end_p) { in pcre_get_compiled_regex_cache_ex()
710 pp++; in pcre_get_compiled_regex_cache_ex()
715 switch (*pp++) { in pcre_get_compiled_regex_cache_ex()
[all …]
/php-src/win32/
H A Dglob.c780 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-src/ext/pcre/pcre2lib/
H A Dpcre2_compile.c1415 PCRE2_SPTR pp; in read_repeat_counts() local
1428 pp = p; in read_repeat_counts()
1429 if (pp < ptrend && IS_DIGIT(*pp)) in read_repeat_counts()
1432 while (++pp < ptrend && IS_DIGIT(*pp)) {} in read_repeat_counts()
1435 while (pp < ptrend && (*pp == CHAR_SPACE || *pp == CHAR_HT)) pp++; in read_repeat_counts()
1445 while (pp < ptrend && (*pp == CHAR_SPACE || *pp == CHAR_HT)) pp++; in read_repeat_counts()
1449 while (++pp < ptrend && IS_DIGIT(*pp)) {} in read_repeat_counts()
1452 while (pp < ptrend && (*pp == CHAR_SPACE || *pp == CHAR_HT)) pp++; in read_repeat_counts()
1453 if (pp >= ptrend || *pp != CHAR_RIGHT_CURLY_BRACKET) return FALSE; in read_repeat_counts()
7159 if (*pp == delimiter && pp[1] == delimiter) in compile_branch()
[all …]
H A Dpcre2_dfa_match.c3013 PCRE2_SPTR pp = start_subject + local_offsets[rc+1]; in internal_dfa_match() local
3014 while (p < pp) if (NOT_FIRSTCU(*p++)) charcount--; in internal_dfa_match()
3127 PCRE2_SPTR pp = local_ptr; in internal_dfa_match() local
3128 charcount = (PCRE2_SIZE)(pp - p); in internal_dfa_match()
3230 PCRE2_SPTR pp = start_subject + local_offsets[1]; in internal_dfa_match() local
3231 while (p < pp) if (NOT_FIRSTCU(*p++)) charcount--; in internal_dfa_match()
3970 uint32_t pp = UCHAR21INCTEST(p); in pcre2_dfa_match() local
3971 if (pp == req_cu || pp == req_cu2) { p--; break; } in pcre2_dfa_match()
3974 PCRE2_SPTR pp = p; in pcre2_dfa_match()
3975 p = memchr(pp, req_cu, end_subject - pp); in pcre2_dfa_match()
[all …]
H A Dpcre2_convert.c131 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 Dpcre2_match.c426 const uint32_t *pp = PRIV(ucd_caseless_sets) + ur->caseset; in match_ref() local
429 if (c < *pp) return -1; /* No match */ in match_ref()
430 if (c == *pp++) break; in match_ref()
7434 uint32_t pp = UCHAR21INCTEST(p); in pcre2_match() local
7435 if (pp == req_cu || pp == req_cu2) { p--; break; } in pcre2_match()
7438 PCRE2_SPTR pp = p; in pcre2_match()
7439 p = memchr(pp, req_cu, end_subject - pp); in pcre2_match()
7442 p = memchr(pp, req_cu2, end_subject - pp); in pcre2_match()
/php-src/Zend/
H A Dzend_execute.h204 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 Dzend_execute_API.c744 ZEND_API zend_result ZEND_FASTCALL zval_update_constant(zval *pp) /* {{{ */ in zval_update_constant() argument
746 …return zval_update_constant_ex(pp, EG(current_execute_data) ? zend_get_executed_scope() : CG(activ… in zval_update_constant()
/php-src/Zend/Optimizer/
H A Dzend_ssa.c1044 zend_ssa_phi **pp = &ssa_blocks[j].phis; in zend_build_ssa() local
1045 while (*pp) { in zend_build_ssa()
1046 if ((*pp)->pi < 0) { in zend_build_ssa()
1049 pp = &(*pp)->next; in zend_build_ssa()
1051 phi->next = *pp; in zend_build_ssa()
1052 *pp = phi; in zend_build_ssa()
/php-src/ext/hash/tests/
H A Dfnv1a64.phpt244 array( 'pp)fcE;JCr)3j}{=A/s^d^v*%FUL$QrtC|\\(BwRfk\\yVZvs|', '26761cf7ed795ba8' ),
/php-src/ext/opcache/jit/ir/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-src/ext/fileinfo/
H A Dlibmagic.patch2832 - pp = asctime_r(tm, buf);
2833 + pp = php_asctime_r(tm, buf);
2835 if (pp == NULL)
/php-src/
H A DREADME.REDIST.BINS219 Modeling and Computer Simulation, Vol. 8, No. 1, January 1998, pp 3-30.
/php-src/ext/fileinfo/tests/
H A Dmagic私はガラスを食べられます9223 # Reference: https://mc.pp.se/dc/ip0000.bin.html
34846 # Type: SE Linux policy modules *.pp reference policy
H A Dmagic9223 # Reference: https://mc.pp.se/dc/ip0000.bin.html
34846 # Type: SE Linux policy modules *.pp reference policy

Completed in 394 milliseconds