Home
last modified time | relevance | path

Searched refs:p2 (Results 51 – 75 of 78) sorted by relevance

1234

/php-src/ext/soap/tests/bugs/
H A Dbug37013.phpt40 $p2 = new ThingWithParent( 2, $p );
43 $p->children = array( $p2, $p3 );
45 return $p2;
H A Dbug50675.phpt51 …pe="ns2:Person" id="ref1"><name xsi:type="SOAP-ENC:string">name</name></p><p2 href="#ref1"/></ns1:…
/php-src/ext/phar/tests/cache_list/files/
H A Dwrite12.phar4 $p2 = new Phar(__FILE__);
H A Dwrite13.phar4 $p2 = new Phar(__FILE__);
H A Dwrite14.phar4 $p2 = new Phar(__FILE__);
H A Dwrite12.phar.inc10 $p2 = new Phar(__FILE__);
H A Dwrite13.phar.inc10 $p2 = new Phar(__FILE__);
H A Dwrite14.phar.inc10 $p2 = new Phar(__FILE__);
/php-src/ext/gd/tests/
H A Dcopyresized.phpt28 $p2 = imagecolorat($dst, $x, $y);
29 if (get_hexcolor($im, $p1) != get_hexcolor($dst, $p2)) {
/php-src/ext/opcache/jit/ir/dynasm/
H A Ddasm_arm64.lua481 local pn, p2 = params[n], params[n+1]
484 if not p2 then
496 if p2 then
498 op = op + parse_reg_base(p1) + parse_imm(p2, 9, 12, 0, true) + 0x400
551 local pn, p2 = params[n], params[n+1]
555 if not p2 then
567 if p2 then
572 if p1a then p1, p2 = p1a, p2a else p2 = "#0" end
575 return op + parse_reg_base(p1) + parse_imm(p2, 7, 15, scale, true)
H A Ddasm_arm.lua728 local p2 = params[n+1]
730 if not p2 then
749 if p2 then
753 local imm = match(p2, "^#(.*)$")
759 local m, neg = parse_gpr_pm(p2)
765 local p1a, p2 = match(p1, "^([^,%s]*)%s*(.*)$")
767 if p2 ~= "" then
768 local imm = match(p2, "^,%s*#(.*)$")
773 local p2a, p3 = match(p2, "^,%s*([^,%s]*)%s*,?%s*(.*)$")
H A Dminilua.c2551 if(ttisstring(p1)||ttisnumber(p1))p1=p2;
2557 p2=p1;
2562 const char*t2=luaT_typenames[ttype(p2)];
4711 const TValue*p1,const TValue*p2){
4715 setobj(L,L->top+2,p2);
4724 const TValue*p2,const TValue*p3){
4727 setobj(L,L->top+2,p2);
4787 tm=luaT_gettmbyobj(L,p2,event);
4789 callTMres(L,res,tm,p1,p2);
4809 tm2=luaT_gettmbyobj(L,p2,event);
[all …]
/php-src/ext/mbstring/
H A Dmbstring.c4121 uint32_t *p2 = p; in html_numeric_entity_decode() local
4124 if (*++p2 == '#') { in html_numeric_entity_decode()
4129 w = *++p2; in html_numeric_entity_decode()
4157 p2++; in html_numeric_entity_decode()
4167 w = *++p2; in html_numeric_entity_decode()
4195 p2++; in html_numeric_entity_decode()
4214 p = p2; in html_numeric_entity_decode()
4215 while (*p2 != '&') in html_numeric_entity_decode()
4216 p2++; in html_numeric_entity_decode()
4218 if (p2 > p) { in html_numeric_entity_decode()
[all …]
/php-src/ext/standard/tests/general_functions/
H A Ddebug_zval_dump_o.phpt56 private $p2 = 50;
148 ["p2":"contains_object_class":private]=>
/php-src/ext/intl/collator/
H A Dcollator_sort.c222 static int collator_cmp_sort_keys( const void *p1, const void *p2 ) in collator_cmp_sort_keys() argument
225 char* key2 = ((collator_sort_key_index_t*)p2)->key; in collator_cmp_sort_keys()
/php-src/Zend/
H A Dzend_strtod.c2149 dshift(b, p2) Bigint *b; int p2; in dshift() argument
2155 if (p2 > 0)
2156 rv -= p2;
2328 p2 = Emin - P + 1;
2341 --p2;
2350 p2 -= bc->scale;
2359 p2 = Emin;
2387 p2 -= p5 + i;
2396 if (p2 > 0) {
2397 b2 = p2;
[all …]
H A Dzend_object_handlers.c2104 zval *p1, *p2; in zend_std_compare_objects() local
2113 p2 = OBJ_PROP(zobj2, info->offset); in zend_std_compare_objects()
2116 if (Z_TYPE_P(p2) != IS_UNDEF) { in zend_std_compare_objects()
2119 ret = zend_compare(p1, p2); in zend_std_compare_objects()
2129 if (Z_TYPE_P(p2) != IS_UNDEF) { in zend_std_compare_objects()
/php-src/ext/ftp/tests/
H A Dserver.inc425 $p2 = $pasv_port % ((int) 1 << 8);
426 $p1 = ($pasv_port-$p2)/((int) 1 << 8);
427 fputs($s, "227 Entering Passive Mode. (127,0,0,1,{$p1},{$p2})\r\n");
/php-src/ext/standard/
H A Dstring.c849 const char *p2 = php_memnstr(ZSTR_VAL(str), ZSTR_VAL(delim), ZSTR_LEN(delim), endp); in php_explode() local
852 if (p2 == NULL) { in php_explode()
860 ZEND_HASH_FILL_SET_STR(zend_string_init_fast(p1, p2 - p1)); in php_explode()
862 p1 = p2 + ZSTR_LEN(delim); in php_explode()
863 p2 = php_memnstr(p1, ZSTR_VAL(delim), ZSTR_LEN(delim), endp); in php_explode()
864 } while (p2 != NULL && --limit > 1); in php_explode()
882 const char *p2 = php_memnstr(ZSTR_VAL(str), ZSTR_VAL(delim), ZSTR_LEN(delim), endp); in php_explode_negative_limit() local
885 if (p2 == NULL) { in php_explode_negative_limit()
901 positions[found++] = p1 = p2 + ZSTR_LEN(delim); in php_explode_negative_limit()
902 p2 = php_memnstr(p1, ZSTR_VAL(delim), ZSTR_LEN(delim), endp); in php_explode_negative_limit()
[all …]
/php-src/build/
H A Dphp_cxx_compile_stdcxx.m4817 pair (T1 p1, T2 p2)
819 m2 {p2}
/php-src/ext/gd/libgd/
H A Dgd.c2921 int p1, p2; in gdImageCompare() local
2960 p2 = im2->trueColor ? gdImageTrueColorPixel(im2, x, y) : gdImagePalettePixel(im2, x, y); in gdImageCompare()
2962 if (gdImageRed(im1, p1) != gdImageRed(im2, p2)) { in gdImageCompare()
2966 if (gdImageGreen(im1, p1) != gdImageGreen(im2, p2)) { in gdImageCompare()
2970 if (gdImageBlue(im1, p1) != gdImageBlue(im2, p2)) { in gdImageCompare()
2976 if (gdImageAlpha(im1, p1) != gdImageAlpha(im2, p2)) { in gdImageCompare()
/php-src/ext/session/
H A Dsession.c660 char *p2; in PHP_INI_MH() local
662 if ((p2 = strchr(p, ';'))) { in PHP_INI_MH()
663 p = p2 + 1; in PHP_INI_MH()
/php-src/sapi/fpm/fpm/
H A Dfpm_conf.c191 char *p2 = token + strlen("$pool"); in fpm_conf_expand_pool_name() local
202 spprintf(&buf, 0, "%s%s%s", *value, current_wp->config->name, p2); in fpm_conf_expand_pool_name()
/php-src/ext/opcache/jit/ir/
H A Dir_ra.c1724 ir_use_pos *p, *p1 = NULL, *p2 = NULL; in ir_swap_operands() local
1771 p2 = p; in ir_swap_operands()
1777 if (p1 && p2) { in ir_swap_operands()
1779 p1->flags = p2->flags; in ir_swap_operands()
1780 p2->flags = tmp; in ir_swap_operands()
H A Dir.h300 _(PI, p2, reg, def, ___) /* e-SSA Pi constraint ??? */ \

Completed in 376 milliseconds

1234