Home
last modified time | relevance | path

Searched refs:pt (Results 26 – 50 of 54) sorted by relevance

123

/PHP-7.4/ext/phar/tests/
H A Dphar_setdefaultstub.phpt124 if (!$pt || $pt == '/') {
125 $pt = $web;
127 header('Location: ' . $_SERVER['REQUEST_URI'] . '/' . $pt);
130 $a = realpath(Extract_Phar::$temp . DIRECTORY_SEPARATOR . $pt);
419 if (!$pt || $pt == '/') {
420 $pt = $web;
422 header('Location: ' . $_SERVER['REQUEST_URI'] . '/' . $pt);
425 $a = realpath(Extract_Phar::$temp . DIRECTORY_SEPARATOR . $pt);
714 if (!$pt || $pt == '/') {
715 $pt = $web;
[all …]
/PHP-7.4/ext/intl/tests/
H A Dbreakiter_getLocale_basic.phpt11 $bi = IntlBreakIterator::createSentenceInstance('pt');
H A Dbreakiter_following_basic.phpt12 $bi = IntlBreakIterator::createWordInstance('pt');
H A Dbreakiter_current_basic.phpt12 $bi = IntlBreakIterator::createWordInstance('pt');
H A Dbreakiter_preceding_basic.phpt14 $bi = IntlBreakIterator::createWordInstance('pt');
H A Dbreakiter_preceding_basic2.phpt13 $bi = IntlBreakIterator::createWordInstance('pt');
H A Dbreakiter_isBoundary_basic.phpt12 $bi = IntlBreakIterator::createWordInstance('pt');
H A Dbreakiter_next_basic.phpt12 $bi = IntlBreakIterator::createWordInstance('pt');
H A Dbreakiter_getPartsIterator_basic.phpt14 $bi = IntlBreakIterator::createWordInstance('pt');
H A Dbreakiter_getPartsIterator_basic2.phpt14 $bi = IntlBreakIterator::createWordInstance('pt');
H A Dbreakiter_setText_basic.phpt15 $bi = IntlBreakIterator::createWordInstance('pt');
/PHP-7.4/ext/standard/tests/array/
H A Dnatcasesort_object2.phpt42 new for_string_natcasesort("py","PY", "pt"),
77 string(2) "pt"
H A Drsort_object2.phpt66 new for_string_rsort("py","PY", "pt"),
165 string(2) "pt"
245 string(2) "pt"
H A Dsort_object2.phpt65 new for_string_sort("py","PY", "pt"),
155 string(2) "pt"
235 string(2) "pt"
/PHP-7.4/sapi/fpm/fpm/
H A Dfpm_main.c1110 char *pt = estrndup(script_path_translated, script_path_translated_len); in init_request_info() local
1114 if (pt) { in init_request_info()
1115 while ((ptr = strrchr(pt, '/')) || (ptr = strrchr(pt, '\\'))) { in init_request_info()
1117 if (stat(pt, &st) == 0 && S_ISREG(st.st_mode)) { in init_request_info()
1133 int ptlen = strlen(pt); in init_request_info()
1179 strcmp(orig_script_filename, pt) != 0) { in init_request_info()
1217 strstr(pt, env_script_name) in init_request_info()
1220 int ptlen = strlen(pt) - strlen(env_script_name); in init_request_info()
1225 memcpy(path_translated, pt, ptlen); in init_request_info()
1265 if (pt) { in init_request_info()
[all …]
/PHP-7.4/ext/openssl/tests/
H A Dopenssl_encrypt_ccm.phpt19 $ct = openssl_encrypt($test['pt'], $method, $test['key'], OPENSSL_RAW_DATA,
H A Dopenssl_encrypt_gcm.phpt18 $ct = openssl_encrypt($test['pt'], $method, $test['key'], OPENSSL_RAW_DATA,
H A Dopenssl_encrypt_ocb.phpt18 $ct = openssl_encrypt($test['pt'], $method, $test['key'], OPENSSL_RAW_DATA,
/PHP-7.4/sapi/cgi/
H A Dcgi_main.c1280 while ((ptr = strrchr(pt, '/')) || (ptr = strrchr(pt, '\\'))) {
1282 if (zend_stat(pt, &st) == 0 && S_ISREG(st.st_mode)) {
1298 size_t slen = len - strlen(pt);
1323 strcmp(orig_script_filename, pt) != 0) {
1327 script_path_translated = CGI_PUTENV("SCRIPT_FILENAME", pt);
1329 TRANSLATE_SLASHES(pt);
1362 strstr(pt, env_script_name)
1365 size_t ptlen = strlen(pt) - strlen(env_script_name);
1369 memcpy(path_translated, pt, ptlen);
1406 if (pt) {
[all …]
/PHP-7.4/ext/phar/
H A Dphar_object.c635 if (!(pt = strstr(testit, basename))) { in PHP_METHOD()
654 pt = estrndup(testit, (pt - testit) + (fname_len - (basename - fname))); in PHP_METHOD()
660 if (!(pt = strstr(path_info, basename))) { in PHP_METHOD()
669 pt = estrndup(path_info, (pt - path_info) + (fname_len - (basename - fname))); in PHP_METHOD()
686 efree(pt); in PHP_METHOD()
704 efree(pt); in PHP_METHOD()
714 efree(pt); in PHP_METHOD()
731 efree(pt); in PHP_METHOD()
739 efree(pt); in PHP_METHOD()
836 efree(pt); in PHP_METHOD()
[all …]
/PHP-7.4/ext/standard/
H A Dfilters.c1477 const char *pt; in strfilter_convert_append_bucket() local
1495 pt = inst->stub; in strfilter_convert_append_bucket()
1499 err = php_conv_convert(inst->cd, &pt, &tcnt, &pd, &ocnt); in strfilter_convert_append_bucket()
1515 pt = inst->stub; in strfilter_convert_append_bucket()
1562 memmove(inst->stub, pt, tcnt); in strfilter_convert_append_bucket()
/PHP-7.4/ext/gd/libgd/
H A Dgd_interpolation.c2306 gdPointF pt, src_pt; in gdTransformAffineCopy() local
2359 pt.y = y + 0.5; in gdTransformAffineCopy()
2361 pt.x = x + 0.5; in gdTransformAffineCopy()
2362 gdAffineApplyToPointF(&src_pt, &pt, inv); in gdTransformAffineCopy()
2368 pt.y = y + 0.5 + bbox.y; in gdTransformAffineCopy()
2375 pt.x = x + 0.5 + bbox.x; in gdTransformAffineCopy()
2376 gdAffineApplyToPointF(&src_pt, &pt, inv); in gdTransformAffineCopy()
/PHP-7.4/ext/iconv/
H A Diconv.c2626 char *pd, *pt; in php_iconv_stream_filter_append_bucket() local
2644 pt = self->stub; in php_iconv_stream_filter_append_bucket()
2648 if (iconv(self->cd, &pt, &tcnt, &pd, &ocnt) == (size_t)-1) { in php_iconv_stream_filter_append_bucket()
2664 pt = self->stub; in php_iconv_stream_filter_append_bucket()
2715 memmove(self->stub, pt, tcnt); in php_iconv_stream_filter_append_bucket()
/PHP-7.4/ext/standard/tests/file/
H A Dfnmatch_variation.phpt31 5 => "ma[pt]ch*",
/PHP-7.4/ext/hash/tests/
H A Dfnv1a32.phpt198 array( '2pt\'NAXroybznTJXt"rDTO^>=^(%V=Bi/8q^ZJR', '2b93c8c6' ),

Completed in 65 milliseconds

123