Home
last modified time | relevance | path

Searched refs:p (Results 751 – 775 of 937) sorted by relevance

1...<<3132333435363738

/php-src/ext/opcache/jit/ir/dynasm/
H A Ddynasm.lua162 local p = args[argn]
163 if not p then
167 return p
356 for _,p in ipairs(path) do
357 local fullname = p == "" and name or p..dirsep..name
777 for p in gmatch(other, "%s*(%Z+)%z?") do
778 params[#params+1] = gsub(p, "%s+$", "")
/php-src/ext/standard/tests/array/
H A Dbug28974.phpt2 Bug #28974 (array_(p)slice() treats large lengths incorrectly - overflow)
/php-src/ext/standard/tests/file/windows_mb_path/
H A Dtest_cp1250_to_utf8_3.phpt23 $item = "Árvíztűrő tükörfúrógép"; // cp1250 specific chars
H A Dtest_cp932_0.phpt26 $item = "�e�X�g�}���`�o�C�g�E�p�X"; // cp932 string
H A Dtest_cp932_to_utf8_0.phpt23 $item = iconv('cp932', 'utf-8', "�e�X�g�}���`�o�C�g�E�p�X"); // cp932 string
H A Dtest_cp932_to_utf8_1.phpt23 $item = iconv('cp932', 'utf-8', "�e�X�g�}���`�o�C�g�E�p�X"); // cp932 string
/php-src/ext/gd/libgd/
H A Dgd_interpolation.c174 double p, q; in KernelBessel_J1() local
204 p = Pone[8]; in KernelBessel_J1()
208 p = p*x*x+Pone[i]; in KernelBessel_J1()
216 double p, q; in KernelBessel_P1() local
240 p = Pone[5]; in KernelBessel_P1()
244 p = p*(8.0/x)*(8.0/x)+Pone[i]; in KernelBessel_P1()
252 double p, q; in KernelBessel_Q1() local
276 p = Pone[5]; in KernelBessel_Q1()
280 p = p*(8.0/x)*(8.0/x)+Pone[i]; in KernelBessel_Q1()
292 p = x; in KernelBessel_Order1()
[all …]
/php-src/ext/filter/tests/
H A D016.phpt17 'e.x.a.m.p.l.e.@example.com',
/php-src/ext/pdo_dblib/tests/
H A DREADME.md6 docker run -e "ACCEPT_EULA=Y" -e "SA_PASSWORD=<YourStrong@Passw0rd>" -p 1433:1433 --name sql1 -h sq…
/php-src/Zend/
H A Dzend_execute_API.c348 while (p != end) { in zend_shutdown_executor_values()
349 i_zval_ptr_dtor(p); in zend_shutdown_executor_values()
350 ZVAL_UNDEF(p); in zend_shutdown_executor_values()
351 p++; in zend_shutdown_executor_values()
724 if (Z_TYPE_P(p) == IS_CONSTANT_AST) { in zval_update_constant_with_ctx()
725 zend_ast *ast = Z_ASTVAL_P(p); in zval_update_constant_with_ctx()
734 zval_ptr_dtor_nogc(p); in zval_update_constant_with_ctx()
735 ZVAL_COPY_OR_DUP(p, zv); in zval_update_constant_with_ctx()
743 zend_ast_ref *ast_ref = Z_AST_P(p); in zval_update_constant_with_ctx()
755 zval_ptr_dtor_nogc(p); in zval_update_constant_with_ctx()
[all …]
H A Dzend_llist.c188 static void zend_llist_swap(zend_llist_element **p, zend_llist_element **q) in zend_llist_swap() argument
191 t = *p; in zend_llist_swap()
192 *p = *q; in zend_llist_swap()
/php-src/ext/pcre/pcre2lib/
H A Dpcre2_internal.h496 #define IS_NEWLINE(p) \ argument
498 ((p) < NLBLOCK->PSEND && \
499 PRIV(is_newline)((p), NLBLOCK->nltype, NLBLOCK->PSEND, \
502 ((p) <= NLBLOCK->PSEND - NLBLOCK->nllen && \
503 UCHAR21TEST(p) == NLBLOCK->nl[0] && \
504 (NLBLOCK->nllen == 1 || UCHAR21TEST(p+1) == NLBLOCK->nl[1]) \
510 #define WAS_NEWLINE(p) \ argument
512 ((p) > NLBLOCK->PSSTART && \
513 PRIV(was_newline)((p), NLBLOCK->nltype, NLBLOCK->PSSTART, \
516 ((p) >= NLBLOCK->PSSTART + NLBLOCK->nllen && \
[all …]
/php-src/ext/phar/
H A Dtar.c68 char *p = buf; in phar_tar_octal() local
71 p += len; /* Start at the end and work backwards. */ in phar_tar_octal()
73 *--p = (char)('0' + (val & 7)); in phar_tar_octal()
83 *p++ = '7'; in phar_tar_octal()
207 char buf[512], *actual_alias = NULL, *p; in phar_parse_tarfile() local
629 p = strrchr(myphar->fname, '/'); in phar_parse_tarfile()
631 if (p) { in phar_parse_tarfile()
632 myphar->ext = memchr(p, '.', (myphar->fname + fname_len) - p); in phar_parse_tarfile()
633 if (myphar->ext == p) { in phar_parse_tarfile()
634 myphar->ext = memchr(p + 1, '.', (myphar->fname + fname_len) - p - 1); in phar_parse_tarfile()
/php-src/ext/readline/
H A Dreadline_cli.c362 char *p = code + i - heredoc_len; in cli_is_valid_code() local
365 while (*p == ' ' || *p == '\t') p--; in cli_is_valid_code()
366 if (*p != '\n') break; in cli_is_valid_code()
/php-src/ext/reflection/tests/
H A DReflectionProperty_isInitialized.phpt15 private int $p;
47 $rp = new ReflectionProperty('A', 'p');
/php-src/ext/dom/tests/modern/html/interactions/
H A DDocument_body_getter.phpt10 $dom = Dom\HTMLDocument::createFromString("<p>foo</p>", LIBXML_NOERROR);
/php-src/main/streams/
H A Dstreams.c1484 char *p; in _php_stream_passthru() local
1489 if (p) { in _php_stream_passthru()
1492 if (0 < (b = PHPWRITE(p + bcount, MIN(mapped - bcount, INT_MAX)))) { in _php_stream_passthru()
1705 char *p; in _php_stream_copy_to_stream_ex() local
1724p = php_stream_mmap_range(src, php_stream_tell(src), chunk_size, PHP_STREAM_MAP_MODE_SHARED_READON… in _php_stream_copy_to_stream_ex()
1726 if (p) { in _php_stream_copy_to_stream_ex()
1734 didwrite = php_stream_write(dest, p, mapped); in _php_stream_copy_to_stream_ex()
1762 } while (p); in _php_stream_copy_to_stream_ex()
1964 const char *p, *protocol = NULL; local
1975 for (p = path; isalnum((int)*p) || *p == '+' || *p == '-' || *p == '.'; p++) {
[all …]
/php-src/ext/dom/lexbor/lexbor/dom/interfaces/
H A Dattr.c161 lxb_char_t *p; in lxb_dom_attr_set_name_ns() local
175 p = (lxb_char_t *) memchr(name, ':', name_length); in lxb_dom_attr_set_name_ns()
176 if (p == NULL) { in lxb_dom_attr_set_name_ns()
180 length = p - name; in lxb_dom_attr_set_name_ns()
/php-src/ext/ftp/tests/
H A Dcert.pem47 NsEXLhV09X1mrk4M4LV1npd0mYxvFsO4+p+IX5YLiahInmQtq0gx3DWE8wouVFER
/php-src/ext/mbstring/tests/
H A Dmb_eregi_replace.phpt15 "ф"=>"f","ы"=>"i","в"=>"v","а"=>"a","п"=>"p","р"=>"r",
/php-src/ext/opcache/jit/
H A Dzend_jit_helpers.c1777 if (EXPECTED(p->key == varname) || in zend_jit_fetch_global_helper()
1779 EXPECTED(p->key != NULL) && in zend_jit_fetch_global_helper()
1873 if (EXPECTED(p->key == name) || in zend_jit_fetch_obj_r_dynamic()
1875 EXPECTED(p->key != NULL) && in zend_jit_fetch_obj_r_dynamic()
1877 ZVAL_COPY_DEREF(result, &p->val); in zend_jit_fetch_obj_r_dynamic()
1929 if (EXPECTED(p->key == name) || in zend_jit_fetch_obj_is_dynamic()
1933 ZVAL_COPY_DEREF(result, &p->val); in zend_jit_fetch_obj_is_dynamic()
1983 if (EXPECTED(p->key == name) || in zend_jit_fetch_obj_r_dynamic_ex()
1987 return &p->val; in zend_jit_fetch_obj_r_dynamic_ex()
2035 if (EXPECTED(p->key == name) || in zend_jit_fetch_obj_is_dynamic_ex()
[all …]
/php-src/ext/phar/tests/zip/
H A Dbug48791.phpt12p text:style-name="P1"><text:span text:style-name="T1">Name:<text:tab/><text:tab/>$$n_fn$$</text:s…
/php-src/main/
H A Dphp_ini.c637 char *p; in php_init_config() local
664 if (!(p = strrchr(namelist[i]->d_name, '.')) || (p && strcmp(p, ".ini"))) { in php_init_config()
686 p = estrndup(ini_file, l); in php_init_config()
687 zend_llist_add_element(&scanned_ini_list, &p); in php_init_config()
/php-src/sapi/phpdbg/
H A Dphpdbg_utils.c199 const char *p = str; in phpdbg_trim() local
202 while (isspace(*p)) { in phpdbg_trim()
203 ++p; in phpdbg_trim()
207 while (*p && isspace(*(p + len -1))) { in phpdbg_trim()
215 new = estrndup(p, len); in phpdbg_trim()
/php-src/ext/phar/tests/tar/
H A Dexists_as_phar.phpt24 $p = new Phar($tname);

Completed in 108 milliseconds

1...<<3132333435363738