Home
last modified time | relevance | path

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

123

/PHP-7.4/ext/phar/tests/cache_list/files/
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-7.4/ext/gd/tests/
H A Dcopyresized.phpt30 $p2 = imagecolorat($dst, $x, $y);
31 if (get_hexcolor($im, $p1) != get_hexcolor($dst, $p2)) {
/PHP-7.4/ext/soap/tests/bugs/
H A Dbug50675.phpt50 …pe="ns2:Person" id="ref1"><name xsi:type="SOAP-ENC:string">name</name></p><p2 href="#ref1"/></ns1:…
/PHP-7.4/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.c2548 Bucket *p1 = ht1->arData + idx1, *p2; in zend_hash_compare_impl() local
2556 p2 = ht2->arData + idx2; in zend_hash_compare_impl()
2557 if (Z_TYPE(p2->val) != IS_UNDEF) break; in zend_hash_compare_impl()
2560 if (p1->key == NULL && p2->key == NULL) { /* numeric indices */ in zend_hash_compare_impl()
2561 if (p1->h != p2->h) { in zend_hash_compare_impl()
2562 return p1->h > p2->h ? 1 : -1; in zend_hash_compare_impl()
2564 } else if (p1->key != NULL && p2->key != NULL) { /* string indices */ in zend_hash_compare_impl()
2565 if (ZSTR_LEN(p1->key) != ZSTR_LEN(p2->key)) { in zend_hash_compare_impl()
2566 return ZSTR_LEN(p1->key) > ZSTR_LEN(p2->key) ? 1 : -1; in zend_hash_compare_impl()
2569 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.c1646 zval *p2 = OBJ_PROP(zobj2, info->offset); in zend_std_compare_objects() local
1653 if (Z_TYPE_P(p2) != IS_UNDEF) { in zend_std_compare_objects()
1656 if (compare_function(&result, p1, p2)==FAILURE) { in zend_std_compare_objects()
1669 if (Z_TYPE_P(p2) != IS_UNDEF) { in zend_std_compare_objects()
/PHP-7.4/ext/standard/tests/general_functions/
H A Ddebug_zval_dump_o.phpt57 private $p2 = 50;
149 ["p2":"contains_object_class":private]=>
/PHP-7.4/ext/xmlrpc/libxmlrpc/
H A Dxmlrpc.c187 char *p = (char *) text, *p2 = buf; in date_from_ISO8601() local
190 *p2 = *p; in date_from_ISO8601()
191 p2++; in date_from_ISO8601()
192 if (p2-buf >= sizeof(buf)) { in date_from_ISO8601()
198 *p2 = 0; in date_from_ISO8601()
/PHP-7.4/ext/intl/collator/
H A Dcollator_sort.c254 static int collator_cmp_sort_keys( const void *p1, const void *p2 ) in collator_cmp_sort_keys() argument
257 char* key2 = ((collator_sort_key_index_t*)p2)->key; in collator_cmp_sort_keys()
/PHP-7.4/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()
2265 char *p1, *p2; in SPL_METHOD() local
2300 p2 = strrchr(tmp_path, '\\'); in SPL_METHOD()
2302 p2 = 0; in SPL_METHOD()
2304 if (p1 || p2) { in SPL_METHOD()
2305 intern->_path_len = ((p1 > p2 ? p1 : p2) - tmp_path); in SPL_METHOD()
/PHP-7.4/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-7.4/ext/standard/
H A Dstring.c1064 const char *p2 = php_memnstr(ZSTR_VAL(str), ZSTR_VAL(delim), ZSTR_LEN(delim), endp); in php_explode() local
1067 if (p2 == NULL) { in php_explode()
1072 size_t l = p2 - p1; in php_explode()
1079 ZVAL_STRINGL(&tmp, p1, p2 - p1); in php_explode()
1082 p1 = p2 + ZSTR_LEN(delim); in php_explode()
1083 p2 = php_memnstr(p1, ZSTR_VAL(delim), ZSTR_LEN(delim), endp); in php_explode()
1084 } while (p2 != NULL && --limit > 1); in php_explode()
1104 if (p2 == NULL) { in php_explode_negative_limit()
1120 positions[found++] = p1 = p2 + ZSTR_LEN(delim); in php_explode_negative_limit()
1121 p2 = php_memnstr(p1, ZSTR_VAL(delim), ZSTR_LEN(delim), endp); in php_explode_negative_limit()
[all …]
/PHP-7.4/build/
H A Dphp_cxx_compile_stdcxx.m4802 pair (T1 p1, T2 p2)
804 m2 {p2}
/PHP-7.4/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-7.4/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-7.4/ext/mbstring/
H A Dmbstring.c713 char *p, *p1, *p2, *endp, *tmpstr; in php_mb_parse_encoding_list() local
737 while ((p2 = (char*)php_memnstr(p1, ",", 1, endp)) != NULL) { in php_mb_parse_encoding_list()
738 p1 = p2 + 1; in php_mb_parse_encoding_list()
749 p2 = p = (char*)php_memnstr(p1, ",", 1, endp); in php_mb_parse_encoding_list()
784 p1 = p2 + 1; in php_mb_parse_encoding_list()
785 } while (n < size && p2 != NULL); in php_mb_parse_encoding_list()
/PHP-7.4/sapi/fpm/fpm/
H A Dfpm_conf.c189 char *p2 = token + strlen("$pool"); in fpm_conf_expand_pool_name() local
200 spprintf(&buf, 0, "%s%s%s", *value, current_wp->config->name, p2); in fpm_conf_expand_pool_name()
/PHP-7.4/ext/session/
H A Dsession.c632 char *p2; in PHP_INI_MH() local
634 if ((p2 = strchr(p, ';'))) { in PHP_INI_MH()
635 p = p2 + 1; in PHP_INI_MH()
/PHP-7.4/ext/fileinfo/libmagic/
H A Dapprentice.c1183 cmpstrp(const void *p1, const void *p2) in cmpstrp() argument
1185 return strcmp(*RCAST(char *const *, p1), *RCAST(char *const *, p2)); in cmpstrp()
/PHP-7.4/ext/soap/
H A Dsoap.c495 char *p2; in PHP_INI_MH() local
497 if ((p2 = strchr(p, ';'))) { in PHP_INI_MH()
498 p = p2 + 1; in PHP_INI_MH()
/PHP-7.4/ext/ffi/
H A Dffi.c1778 char *p1, *p2; in zend_ffi_cdata_do_operation() local
1789 p2 = (char*)(*(void**)cdata2->ptr); in zend_ffi_cdata_do_operation()
1792 p2 = cdata2->ptr; in zend_ffi_cdata_do_operation()
1796 (zend_long)(p1 - p2) / (zend_long)t1->size); in zend_ffi_cdata_do_operation()

Completed in 391 milliseconds

123