Home
last modified time | relevance | path

Searched refs:p (Results 301 – 325 of 824) sorted by relevance

1...<<11121314151617181920>>...33

/PHP-8.2/ext/sodium/
H A Dsodium_pwhash.c115 const char* p = NULL; in php_sodium_argon2_get_info() local
124 p = ZSTR_VAL(hash); in php_sodium_argon2_get_info()
125 if (!memcmp(p, "$argon2i$", strlen("$argon2i$"))) { in php_sodium_argon2_get_info()
126 p += strlen("$argon2i$"); in php_sodium_argon2_get_info()
127 } else if (!memcmp(p, "$argon2id$", strlen("$argon2id$"))) { in php_sodium_argon2_get_info()
128 p += strlen("$argon2id$"); in php_sodium_argon2_get_info()
133 sscanf(p, "v=" ZEND_LONG_FMT "$m=" ZEND_LONG_FMT ",t=" ZEND_LONG_FMT ",p=" ZEND_LONG_FMT, in php_sodium_argon2_get_info()
/PHP-8.2/ext/opcache/tests/
H A Dissue0149.phpt18 $p = new Phar(__DIR__ . '/issue0149.phar.php', 0, 'this');
19 $p['index.php'] = ""; # A Phar must have at least one file, hence this dummy
20 $p->setStub($stub);
21 unset($p);
/PHP-8.2/ext/standard/tests/streams/
H A Dbug60602.phpt15 $p = proc_open($cmd, $descs, $pipes, '.', $environment);
17 if (is_resource($p)) {
29 proc_terminate($p, 9);
42 $ret = proc_close($p);
/PHP-8.2/Zend/tests/
H A Dbug26698.phpt62 $p = new Proxy();
64 $p->callOne();
65 $p->callTwo();
66 $p->callThree();
/PHP-8.2/ext/spl/tests/
H A Dspl_iterator_recursive_getiterator_error.phpt10 p($iii);
11 function p ($i) {
18 #0 %s(%d): p(Object(IteratorIterator))
/PHP-8.2/sapi/fuzzer/
H A Dfuzzer-sapi.c147 char *p = fuzzer_module.ini_entries = malloc(ini_len + 1); in fuzzer_init_php() local
148 memcpy(p, HARDCODED_INI, sizeof(HARDCODED_INI) - 1); in fuzzer_init_php()
149 p += sizeof(HARDCODED_INI) - 1; in fuzzer_init_php()
151 *p++ = '\n'; in fuzzer_init_php()
152 memcpy(p, extra_ini, extra_ini_len); in fuzzer_init_php()
153 p += extra_ini_len; in fuzzer_init_php()
155 *p = '\0'; in fuzzer_init_php()
/PHP-8.2/ext/dom/tests/
H A Dbug40836.phpt15 <p>paragraph</p>
29 …ted/><content><div xmlns="http://www.w3.org/1999/xhtml"><p>paragraph2007-02-14T00:00:00+01:00</p><…
H A Dnode_textcontent.phpt23 $text = '<p>hello world &trade;</p>';
39 string(63) "<div id="test">&lt;p&gt;hello world &amp;trade;&lt;/p&gt;</div>"
/PHP-8.2/ext/pspell/tests/
H A D003.phpt15 $p = pspell_new_config($cfg);
16 var_dump(pspell_check($p, 'yy'));
27 $p = pspell_new_config($cfg);
28 var_dump(pspell_check($p, 'yy'));
/PHP-8.2/ext/opcache/jit/dynasm/
H A Ddasm_arm.lua837 if p == "D" then
839 elseif p == "N" then
841 elseif p == "S" then
843 elseif p == "M" then
845 elseif p == "d" then
847 elseif p == "n" then
849 elseif p == "m" then
851 elseif p == "P" then
859 elseif p == "p" then
861 elseif p == "L" then
[all …]
/PHP-8.2/ext/mysqlnd/
H A Dmysqlnd_alloc.c66 #define REAL_PTR(p) (collect_memory_statistics && (p)? (((char *)(p)) - EXTRA_SIZE) : (p)) argument
67 #define FAKE_PTR(p) (collect_memory_statistics && (p)? (((char *)(p)) + EXTRA_SIZE) : (p)) argument
307 char * p = (char *) ptr; in _mysqlnd_pestrndup() local
309 while (*p && l--) { in _mysqlnd_pestrndup()
310 *dest++ = *p++; in _mysqlnd_pestrndup()
335 const char * p = ptr; in _mysqlnd_pestrdup() local
346 smart_str_appendc(&tmp_str, *p); in _mysqlnd_pestrdup()
347 } while (*p++); in _mysqlnd_pestrdup()
/PHP-8.2/ext/tidy/tests/
H A Dtidy_error.phpt16 <p>paragraph</p>
24 $html = '<p>paragraph</i>';
/PHP-8.2/Zend/
H A Dzend_alloc.h184 ZEND_API void * __zend_realloc(void *p, size_t len) ZEND_ATTRIBUTE_ALLOC_SIZE(2);
248 ZEND_API void ZEND_FASTCALL _zend_mm_free(zend_mm_heap *heap, void *p ZEND_FILE_LINE_DC ZEND_FILE…
251 ZEND_API size_t ZEND_FASTCALL _zend_mm_block_size(zend_mm_heap *heap, void *p ZEND_FILE_LINE_DC ZEN…
254 #define zend_mm_free(heap, p) _zend_mm_free((heap), (p) ZEND_FILE_LINE_CC ZEND_FILE_LINE_EMPTY_C… argument
255 #define zend_mm_realloc(heap, p, size) _zend_mm_realloc((heap), (p), (size) ZEND_FILE_LINE_CC ZEND… argument
256 #define zend_mm_realloc2(heap, p, size, copy_size) _zend_mm_realloc2((heap), (p), (size), (copy_siz… argument
257 #define zend_mm_block_size(heap, p) _zend_mm_block_size((heap), (p) ZEND_FILE_LINE_CC ZEND_FILE_L… argument
260 #define zend_mm_free_rel(heap, p) _zend_mm_free((heap), (p) ZEND_FILE_LINE_RELAY_CC ZEND_FILE_LIN… argument
261 #define zend_mm_realloc_rel(heap, p, size) _zend_mm_realloc((heap), (p), (size) ZEND_FILE_LINE_RELA… argument
262 #define zend_mm_realloc2_rel(heap, p, size, copy_size) _zend_mm_realloc2((heap), (p), (size), (copy… argument
[all …]
H A Dzend_operators.h182 return (const char *)memchr(p, *needle, (end-p)); in zend_memnstr()
184 return p; in zend_memnstr()
198 if ((p = (const char *)memchr(p, *needle, (end-p+1)))) { in zend_memnstr()
200 return p; in zend_memnstr()
205 p++; in zend_memnstr()
243 return p; in zend_memnrstr()
263 if (!p) { in zend_memnrstr()
267 return p; in zend_memnrstr()
967 return p; in zend_memnistr()
974 while (p && p <= end) { in zend_memnistr()
[all …]
/PHP-8.2/ext/intl/tests/
H A Dcpbi_getLastCodePoint_basic.phpt19 $p = $codepoint_it->first();
20 while ($p != IntlBreakIterator::DONE) {
28 $p = $codepoint_it->next();
32 $p = $codepoint_it->last();
33 while ($p != IntlBreakIterator::DONE) {
39 $p = $codepoint_it->previous();
/PHP-8.2/ext/reflection/tests/
H A DReflectionProperty_error.phpt7 public static $p;
16 new ReflectionProperty('C::p');
22 new ReflectionProperty('C', 'p', 'x');
/PHP-8.2/ext/opcache/tests/jit/
H A Dgh10271.phpt25 for( $p=0; $p<3; $p++ )
27 print($p.': ');
/PHP-8.2/ext/pdo_mysql/tests/
H A Dbug_pecl_7976.phpt29 $db->exec('DROP PROCEDURE IF EXISTS p');
30 $db->exec('CREATE PROCEDURE p() BEGIN SELECT "1" AS _one; END;');
32 $stmt = $db->query('CALL p()');
36 $stmt = $db->query('CALL p()');
58 $db->exec('DROP PROCEDURE IF EXISTS p');
/PHP-8.2/ext/mbstring/
H A Dmbstring.c267 while ((p = memchr(p, ',', end - p))) { in count_commas()
269 p++; in count_commas()
315 p--; in php_mb_parse_encoding_list()
316 while (p > p1 && (*p == ' ' || *p == '\t')) { in php_mb_parse_encoding_list()
318 p--; in php_mb_parse_encoding_list()
1836 p += mbtab[*p]; in mb_get_strlen()
3153 char *p = optstr, *e = p + optstr_len; in PHP_FUNCTION() local
3684 memcpy(converted, p, (p2 - p) * 4); in html_numeric_entity_decode()
3721 memcpy(converted, p, (p2 - p) * 4); in html_numeric_entity_decode()
3764 memcpy(converted, p, (p2 - p) * 4); in html_numeric_entity_decode()
[all …]
/PHP-8.2/ext/opcache/jit/
H A Dzend_jit_trace.c999 p--; in find_return_ssa_var()
1006 p--; in zend_jit_trace_find_init_fcall_op()
1025 p--; in zend_jit_trace_find_init_fcall_op()
1031 p++; in zend_jit_trace_find_init_fcall_op()
1042 p--; in zend_jit_trace_find_init_fcall_op()
1678 p++; in zend_jit_trace_build_tssa()
1682 p++; in zend_jit_trace_build_tssa()
1686 p++; in zend_jit_trace_build_tssa()
4318 p++; in zend_jit_trace()
7429 p = p->next; in zend_jit_dump_trace()
[all …]
/PHP-8.2/ext/standard/
H A Dcrypt_freesec.c212 uint32_t *p, *il, *ir, *fl, *fr; in _crypt_extended_init() local
330 *(p = &psbox[b][i]) = 0; in _crypt_extended_init()
613 uint8_t *p, *q; in _crypt_extended_r() local
701 *p++ = ascii64[(l >> 18) & 0x3f]; in _crypt_extended_r()
703 *p++ = ascii64[(l >> 6) & 0x3f]; in _crypt_extended_r()
704 *p++ = ascii64[l & 0x3f]; in _crypt_extended_r()
709 *p++ = ascii64[(l >> 6) & 0x3f]; in _crypt_extended_r()
710 *p++ = ascii64[l & 0x3f]; in _crypt_extended_r()
714 *p++ = ascii64[(l >> 6) & 0x3f]; in _crypt_extended_r()
715 *p++ = ascii64[l & 0x3f]; in _crypt_extended_r()
[all …]
/PHP-8.2/sapi/cli/tests/
H A Dphp_cli_server_013.phpt134 </head><body><h1>Not Found</h1><p>The requested resource <code class="url">/</code> was not found o…
143 …d><body><h1>Not Found</h1><p>The requested resource <code class="url">/main/style.css</code> was n…
161 </head><body><h1>Method Not Allowed</h1><p>Requested method not allowed.</p></body></html>
171 </head><body><h1>Method Not Allowed</h1><p>Requested method not allowed.</p></body></html>
181 </head><body><h1>Method Not Allowed</h1><p>Requested method not allowed.</p></body></html>
/PHP-8.2/ext/mysqli/tests/
H A Dmysqli_next_result_error.phpt31 $mysqli->query("DROP PROCEDURE IF EXISTS p");
32 $mysqli->query('CREATE PROCEDURE p() READS SQL DATA BEGIN SELECT 1; SELECT foobar FROM table_that_d…
34 $stmt = $mysqli->prepare("CALL p()");
48 $mysqli->query("DROP PROCEDURE IF EXISTS p");
/PHP-8.2/ext/pcre/tests/
H A Dbug80118.phpt5 preg_match('~[^\p{Han}\p{Z}]~u', ' ', $matches);
/PHP-8.2/sapi/fpm/fpm/
H A Dfpm_php.c248 char **p; in fpm_php_limit_extensions() local
255 p = limit_extensions; in fpm_php_limit_extensions()
257 while (p && *p) { in fpm_php_limit_extensions()
258 size_t ext_len = strlen(*p); in fpm_php_limit_extensions()
261 if (strcmp(*p, path_ext) == 0) { in fpm_php_limit_extensions()
265 p++; in fpm_php_limit_extensions()

Completed in 90 milliseconds

1...<<11121314151617181920>>...33