Home
last modified time | relevance | path

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

123

/PHP-8.0/ext/phar/tests/cache_list/files/
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-8.0/ext/gd/tests/
H A Dcopyresized.phpt30 $p2 = imagecolorat($dst, $x, $y);
31 if (get_hexcolor($im, $p1) != get_hexcolor($dst, $p2)) {
/PHP-8.0/ext/opcache/jit/dynasm/
H A Ddasm_arm64.lua465 local pn, p2 = params[n], params[n+1]
468 if not p2 then
481 if p2 then
483 op = op + parse_reg_base(p1) + parse_imm(p2, 9, 12, 0, true) + 0x400
536 local pn, p2 = params[n], params[n+1]
540 if not p2 then
552 if p2 then
557 if p1a then p1, p2 = p1a, p2a else p2 = "#0" end
560 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.c2550 if(ttisstring(p1)||ttisnumber(p1))p1=p2;
2556 p2=p1;
2561 const char*t2=luaT_typenames[ttype(p2)];
4710 const TValue*p1,const TValue*p2){
4714 setobj(L,L->top+2,p2);
4723 const TValue*p2,const TValue*p3){
4726 setobj(L,L->top+2,p2);
4786 tm=luaT_gettmbyobj(L,p2,event);
4788 callTMres(L,res,tm,p1,p2);
4808 tm2=luaT_gettmbyobj(L,p2,event);
[all …]
/PHP-8.0/ext/soap/tests/bugs/
H A Dbug50675.phpt51 …pe="ns2:Person" id="ref1"><name xsi:type="SOAP-ENC:string">name</name></p><p2 href="#ref1"/></ns1:…
/PHP-8.0/ext/standard/tests/general_functions/
H A Ddebug_zval_dump_o.phpt50 private $p2 = 50;
142 ["p2":"contains_object_class":private]=>
/PHP-8.0/Zend/
H A Dzend_strtod.c2167 dshift(b, p2) Bigint *b; int p2; in dshift() argument
2173 if (p2 > 0)
2174 rv -= p2;
2346 p2 = Emin - P + 1;
2359 --p2;
2368 p2 -= bc->scale;
2377 p2 = Emin;
2405 p2 -= p5 + i;
2414 if (p2 > 0) {
2415 b2 = p2;
[all …]
H A Dzend_hash.c2577 Bucket *p1 = ht1->arData + idx1, *p2; in zend_hash_compare_impl() local
2585 p2 = ht2->arData + idx2; in zend_hash_compare_impl()
2586 if (Z_TYPE(p2->val) != IS_UNDEF) break; in zend_hash_compare_impl()
2589 if (p1->key == NULL && p2->key == NULL) { /* numeric indices */ in zend_hash_compare_impl()
2590 if (p1->h != p2->h) { in zend_hash_compare_impl()
2591 return p1->h > p2->h ? 1 : -1; in zend_hash_compare_impl()
2593 } else if (p1->key != NULL && p2->key != NULL) { /* string indices */ in zend_hash_compare_impl()
2594 if (ZSTR_LEN(p1->key) != ZSTR_LEN(p2->key)) { in zend_hash_compare_impl()
2595 return ZSTR_LEN(p1->key) > ZSTR_LEN(p2->key) ? 1 : -1; in zend_hash_compare_impl()
2598 result = memcmp(ZSTR_VAL(p1->key), ZSTR_VAL(p2->key), ZSTR_LEN(p1->key)); in zend_hash_compare_impl()
[all …]
H A Dzend_object_handlers.c1573 zval *p2 = OBJ_PROP(zobj2, info->offset); in zend_std_compare_objects() local
1580 if (Z_TYPE_P(p2) != IS_UNDEF) { in zend_std_compare_objects()
1583 ret = zend_compare(p1, p2); in zend_std_compare_objects()
1593 if (Z_TYPE_P(p2) != IS_UNDEF) { in zend_std_compare_objects()
/PHP-8.0/ext/intl/collator/
H A Dcollator_sort.c226 static int collator_cmp_sort_keys( const void *p1, const void *p2 ) in collator_cmp_sort_keys() argument
229 char* key2 = ((collator_sort_key_index_t*)p2)->key; in collator_cmp_sort_keys()
/PHP-8.0/ext/spl/
H A Dspl_directory.c403 char *p1, *p2; in spl_filesystem_info_set_filename() local
419 p2 = strrchr(intern->file_name, '\\'); in spl_filesystem_info_set_filename()
421 p2 = 0; in spl_filesystem_info_set_filename()
423 if (p1 || p2) { in spl_filesystem_info_set_filename()
424 intern->_path_len = ((p1 > p2 ? p1 : p2) - intern->file_name); in spl_filesystem_info_set_filename()
2050 char *p1, *p2; in PHP_METHOD() local
2085 p2 = strrchr(tmp_path, '\\'); in PHP_METHOD()
2087 p2 = 0; in PHP_METHOD()
2089 if (p1 || p2) { in PHP_METHOD()
2090 intern->_path_len = ((p1 > p2 ? p1 : p2) - tmp_path); in PHP_METHOD()
/PHP-8.0/ext/ftp/tests/
H A Dserver.inc461 $p2 = $pasv_port % ((int) 1 << 8);
462 $p1 = ($pasv_port-$p2)/((int) 1 << 8);
463 fputs($s, "227 Entering Passive Mode. (127,0,0,1,{$p1},{$p2})\r\n");
/PHP-8.0/ext/standard/
H A Dstring.c1028 const char *p2 = php_memnstr(ZSTR_VAL(str), ZSTR_VAL(delim), ZSTR_LEN(delim), endp); in php_explode() local
1031 if (p2 == NULL) { in php_explode()
1036 ZVAL_STRINGL_FAST(&tmp, p1, p2 - p1); in php_explode()
1038 p1 = p2 + ZSTR_LEN(delim); in php_explode()
1039 p2 = php_memnstr(p1, ZSTR_VAL(delim), ZSTR_LEN(delim), endp); in php_explode()
1040 } while (p2 != NULL && --limit > 1); in php_explode()
1056 const char *p2 = php_memnstr(ZSTR_VAL(str), ZSTR_VAL(delim), ZSTR_LEN(delim), endp); in php_explode_negative_limit() local
1059 if (p2 == NULL) { in php_explode_negative_limit()
1075 positions[found++] = p1 = p2 + ZSTR_LEN(delim); in php_explode_negative_limit()
1076 p2 = php_memnstr(p1, ZSTR_VAL(delim), ZSTR_LEN(delim), endp); in php_explode_negative_limit()
[all …]
/PHP-8.0/build/
H A Dphp_cxx_compile_stdcxx.m4802 pair (T1 p1, T2 p2)
804 m2 {p2}
/PHP-8.0/ext/gd/libgd/
H A Dgd.c2867 int p1, p2; in gdImageCompare() local
2906 p2 = im2->trueColor ? gdImageTrueColorPixel(im2, x, y) : gdImagePalettePixel(im2, x, y); in gdImageCompare()
2908 if (gdImageRed(im1, p1) != gdImageRed(im2, p2)) { in gdImageCompare()
2912 if (gdImageGreen(im1, p1) != gdImageGreen(im2, p2)) { in gdImageCompare()
2916 if (gdImageBlue(im1, p1) != gdImageBlue(im2, p2)) { in gdImageCompare()
2922 if (gdImageAlpha(im1, p1) != gdImageAlpha(im2, p2)) { in gdImageCompare()
/PHP-8.0/ext/pcre/pcre2lib/sljit/
H A DsljitNativeTILEGX_64.c362 #define BUNDLE_FORMAT_MASK(p0, p1, p2) \ argument
363 ((p0) | ((p1) << 8) | ((p2) << 16))
365 #define BUNDLE_FORMAT(p0, p1, p2) \ argument
370 (tilegx_pipeline)(p2) \
372 BUNDLE_FORMAT_MASK(1 << (p0), 1 << (p1), (1 << (p2))) \
/PHP-8.0/sapi/fpm/fpm/
H A Dfpm_conf.c186 char *p2 = token + strlen("$pool"); in fpm_conf_expand_pool_name() local
197 spprintf(&buf, 0, "%s%s%s", *value, current_wp->config->name, p2); in fpm_conf_expand_pool_name()
/PHP-8.0/ext/session/
H A Dsession.c633 char *p2; in PHP_INI_MH() local
635 if ((p2 = strchr(p, ';'))) { in PHP_INI_MH()
636 p = p2 + 1; in PHP_INI_MH()
/PHP-8.0/ext/fileinfo/libmagic/
H A Dapprentice.c1223 cmpstrp(const void *p1, const void *p2) in cmpstrp() argument
1225 return strcmp(*RCAST(char *const *, p1), *RCAST(char *const *, p2)); in cmpstrp()
/PHP-8.0/ext/soap/
H A Dsoap.c224 char *p2; in PHP_INI_MH() local
226 if ((p2 = strchr(p, ';'))) { in PHP_INI_MH()
227 p = p2 + 1; in PHP_INI_MH()
/PHP-8.0/ext/ffi/
H A Dffi.c1804 char *p1, *p2; in zend_ffi_cdata_do_operation() local
1815 p2 = (char*)(*(void**)cdata2->ptr); in zend_ffi_cdata_do_operation()
1818 p2 = cdata2->ptr; in zend_ffi_cdata_do_operation()
1822 (zend_long)(p1 - p2) / (zend_long)t1->size); in zend_ffi_cdata_do_operation()

Completed in 190 milliseconds

123