Home
last modified time | relevance | path

Searched refs:p (Results 776 – 800 of 937) sorted by relevance

1...<<3132333435363738

/php-src/ext/phar/tests/zip/
H A Dexists_as_phar.phpt24 $p = new Phar($tname);
/php-src/ext/standard/tests/strings/
H A Dstr_shuffle_basic.phpt16 // For a given i/p string ensure that all combinations are
/php-src/ext/standard/tests/streams/
H A Dgh14780.phpt2 GH-14780: p(f)sockopen overflow on timeout.
/php-src/ext/com_dotnet/
H A Dcom_typeinfo.c66 OLECHAR *p; in php_com_load_typelib() local
78 p = php_com_string_to_olestring(search_string, strlen(search_string), codepage); in php_com_load_typelib()
80 if (SUCCEEDED(CLSIDFromString(p, &clsid))) { in php_com_load_typelib()
114 if (FAILED(LoadTypeLib(p, &TL))) { in php_com_load_typelib()
173 efree(p); in php_com_load_typelib()
/php-src/ext/standard/
H A Dproc_open.c151 char *p; in _php_array_to_envp() local
196 p = env.envp = (char *) ecalloc(sizeenv + 4, 1); in _php_array_to_envp()
200 *ep = p; in _php_array_to_envp()
205 p = zend_mempcpy(p, ZSTR_VAL(key), ZSTR_LEN(key)); in _php_array_to_envp()
206 *p++ = '='; in _php_array_to_envp()
209 p = zend_mempcpy(p, ZSTR_VAL(str), ZSTR_LEN(str)); in _php_array_to_envp()
210 *p++ = '\0'; in _php_array_to_envp()
214 assert((uint32_t)(p - env.envp) <= sizeenv); in _php_array_to_envp()
H A Dmail.c376 char *p = message; in php_mail_log_crlf_to_spaces() local
377 while ((p = strpbrk(p, "\r\n"))) { in php_mail_log_crlf_to_spaces()
378 *p = ' '; in php_mail_log_crlf_to_spaces()
/php-src/ext/spl/tests/
H A Diterator_034.phpt97 $p = 0;
103 if ($p++ == 5)
/php-src/ext/mbstring/tests/
H A Dqprint_encoding.phpt23 testConversion("J'interdis aux marchands de vanter trop leurs marchandises. Car ils se font vite pé…
24 … aux marchands de vanter trop leurs marchandises. Car ils se f=\r\nont vite p=C3=A9dagogues et t'e…
/php-src/ext/fileinfo/
H A Dlibmagic.patch113 - char *p;
121 - p = CAST(char *, map->p);
124 - if (p != NULL && b >= p && b <= p + map->len)
136 + efree(map->p);
138 - free(p);
142 - if (map->p && map->p != MAP_FAILED)
277 fn = p;
551 - map->p = buf;
1028 +#define CDF_REALLOC(p, n) erealloc(p, n)
2080 - const char *p;
[all …]
/php-src/ext/openssl/tests/
H A Dsni_server_cs.pem20 B70lJ+93p/dKM/BsLI5TsHqOO0YB/QsIXOVAHgJ2FfdPJnW+e9vYba+kZ/Po6PSi
/php-src/ext/standard/tests/file/windows_mb_path/
H A Dtest_cp932_to_utf8_2.phpt23 $item = iconv('cp932', 'utf-8', "�e�X�g�}���`�o�C�g�E�p�X"); // cp932 string
/php-src/ext/standard/tests/general_functions/
H A Duniqid_basic.phpt15 // Use a fixed prefix so we can ensure length of o/p id is fixed
/php-src/ext/intl/tests/
H A Dtransliterator_transliterate_variant1.phpt10 echo transliterator_transliterate("[\p{White_Space}] hex", $str), "\n";
/php-src/ext/standard/tests/array/
H A Dusort_variation8.phpt15 "p" => "Pineapple", "o" => "orange");
H A D009.phpt13 array('d' => 'drink', 'p' => 'port', 's' => 'set'), // another associative array
244 string(1) "p"
257 ["p"]=>
/php-src/ext/dom/tests/
H A Dbug77686.phpt26 $new_element = $doc->createElement('p');
/php-src/sapi/cli/tests/
H A Dphp_cli_server_pdeathsig.phpt25 return split_words(shell_exec('ps -o pid= -p ' . join(',', $pids)));
/php-src/ext/mysqli/tests/
H A Dmysqli_connect.phpt119 ini_set('mysqli.default_host', 'p:' . $host);
135 ini_set('mysqli.default_host', 'p:');
137 printf("[024] Usage of mysqli.default_host=p: did not fail\n") ;
/php-src/ext/pcre/
H A Dphp_pcre.c587 char *p, *pp; in pcre_get_compiled_regex_cache_ex() local
621 while (isspace((int)*(unsigned char *)p)) p++; in pcre_get_compiled_regex_cache_ex()
622 if (p >= end_p) { in pcre_get_compiled_regex_cache_ex()
633 delimiter = *p++; in pcre_get_compiled_regex_cache_ex()
648 pp = p; in pcre_get_compiled_regex_cache_ex()
2776 p = in_str; in PHP_FUNCTION()
2778 c = *p; in PHP_FUNCTION()
2814 p++; in PHP_FUNCTION()
2825 p = in_str; in PHP_FUNCTION()
2828 c = *p; in PHP_FUNCTION()
[all …]
/php-src/tests/lang/
H A Dengine_assignExecutionOrder_002.phpt58 list($o,$p) = 20;
59 echo "O=$o and P=$p\n";
/php-src/main/
H A Dphp_output.h214 PHPAPI zend_result php_output_get_contents(zval *p);
215 PHPAPI zend_result php_output_get_length(zval *p);
/php-src/ext/spl/
H A Dspl_dllist.c1032 const unsigned char *p, *s; in PHP_METHOD() local
1049 s = p = (const unsigned char*)buf; in PHP_METHOD()
1054 if (!php_var_unserialize(flags, &p, s + buf_len, &var_hash) || Z_TYPE_P(flags) != IS_LONG) { in PHP_METHOD()
1061 while(*p == ':') { in PHP_METHOD()
1062 ++p; in PHP_METHOD()
1064 if (!php_var_unserialize(elem, &p, s + buf_len, &var_hash)) { in PHP_METHOD()
1072 if (*p != '\0') { in PHP_METHOD()
1081 …spl_ce_UnexpectedValueException, 0, "Error at offset %zd of %zd bytes", ((char*)p - buf), buf_len); in PHP_METHOD()
/php-src/ext/pcntl/
H A Dpcntl.c76 #define sched_getaffinity(p, c, m) syscall(SYS__sched_getaffinity, p, 0, c, m) argument
77 #define sched_setaffinity(p, c, m) syscall(SYS__sched_setaffinity, p, 0, c, m) argument
96 #define sched_getaffinity(p, c, m) pset_bind(PS_QUERY, P_PID, (p <= 0 ? getpid() : p), &m) argument
97 #define sched_setaffinity(p, c, m) pset_bind(m, P_PID, (p <= 0 ? getpid() : p), NULL) argument
/php-src/ext/hash/tests/
H A Dfnv1a32.phpt31 array( 'p:vKE', 'becd7e8f' ),
91 array( '>bSU4rzt839C.p 2h', '00cf8218' ),
104 array( 'p<BC`}|5[Qm!;S,(uE,H', '50d88cac' ),
142 array( 'qe<p"]GMcVk||>k&sJKLITYIYZET', '90be4d50' ),
170 array( '@G\'{jp&eLmoBEY\\Jq_6Q,B:hT#pLy:p;a', '03b92168' ),
173 array( '[UF~U3"k|Vyx.+K$*)<f@p= }O#zl4\'HjM', '93a09a8c' ),
193 array( 'b=sYlK9_/`;TAr^SH|aJm.+K@K>C"p^d/S?{~X', '58f87a0f' ),
240 array( 'n</g_!GS[[>=own-#B.lVM_n`5p!F];5zJ}ZLF.("MFrE6!', '8f9e0173' ),
241 array( 'IX/60]v~>,p@RO[hJ\'f%S.4[1a#$\'9%Qr5g#r_#1ktQ>D.(', 'f4e44d2d' ),
266 array( 'a!pgIwZ^lU@^uC8@"3DND8rCPY*#=:\' <xhepDE]ye=p*U1,iVZ/', '09251477' ),
[all …]
/php-src/ext/opcache/jit/ir/dynasm/
H A Ddasm_x86.lua539 wputb(tail + shl(bxor(reg, 15), 3) + vex.p)
1953 local p = 0
1954 if b == 0x66 then p = 1
1955 elseif b == 0xf3 then p = 2
1956 elseif b == 0xf2 then p = 3 end
1959 vex = { m = m, p = p, v = v }
2066 for i,p in ipairs(params) do
2067 args[i] = parseoperand(p)
2176 for _,p in ipairs(params) do
2177 local a = parseoperand(p, sz == "q")
[all …]

Completed in 60 milliseconds

1...<<3132333435363738