Home
last modified time | relevance | path

Searched refs:p (Results 351 – 375 of 824) sorted by relevance

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

/PHP-8.2/ext/pdo_mysql/tests/
H A Dbug_39858.phpt30 $db->exec("DROP PROCEDURE IF EXISTS p");
32 CREATE PROCEDURE p()
41 $stmt = $db->prepare("CALL p()");
47 $stmt = $db->prepare("CALL p()");
70 $db->exec("DROP PROCEDURE IF EXISTS p");
H A Dbug_41997.phpt27 $db->exec('DROP PROCEDURE IF EXISTS p');
28 $db->exec('CREATE PROCEDURE p() BEGIN SELECT 1 AS "one"; END');
30 $stmt = $db->query("CALL p()");
45 $db->exec("DROP PROCEDURE IF EXISTS p");
/PHP-8.2/Zend/tests/function_arguments/
H A Dsensitive_parameter_value_reflection.phpt9 $p = $r->getProperty('value');
11 var_dump($p->getValue($v));
/PHP-8.2/ext/standard/
H A Dcrc32_x86.h44 size_t crc32_x86_simd_update(X86_CRC32_TYPE type, uint32_t *crc, const unsigned char *p, size_t nr);
46 …size_t crc32_x86_simd_update(X86_CRC32_TYPE type, uint32_t *crc, const unsigned char *p, size_t nr) in crc32_x86_simd_update() argument
H A Dfilters.c1737 if (*p >= '0' && *p <= '9') { in php_dechunk()
1739 } else if (*p >= 'A' && *p <= 'F') { in php_dechunk()
1741 } else if (*p >= 'a' && *p <= 'f') { in php_dechunk()
1751 p++; in php_dechunk()
1760 while (p < end && *p != '\r' && *p != '\n') { in php_dechunk()
1761 p++; in php_dechunk()
1770 p++; in php_dechunk()
1780 p++; in php_dechunk()
1809 memmove(out, p, end - p); in php_dechunk()
1820 p++; in php_dechunk()
[all …]
/PHP-8.2/ext/gd/libgd/
H A Dgd_xbm.c179 int x, y, c, b, sx, sy, p; in gdImageXbmCtx() local
207 p = 0; in gdImageXbmCtx()
218 if (p) { in gdImageXbmCtx()
220 if (!(p%12)) { in gdImageXbmCtx()
222 p = 12; in gdImageXbmCtx()
225 p++; in gdImageXbmCtx()
/PHP-8.2/tests/lang/
H A Dtype_hints_003.phpt6 function f(P $p = 42) {
11 Fatal error: Cannot use int as default value for parameter $p of type P in %s on line %d
H A Dtype_hints_002.phpt7 function f(P $p = NULL) {
8 var_dump($p);
/PHP-8.2/ext/reflection/tests/
H A Dbug37816.phpt8 protected $p = 2;
13 $r = new ReflectionProperty($o, 'p');
/PHP-8.2/ext/mbstring/libmbfl/filters/
H A Dmbfilter_cp51932.c277 unsigned char *p = *in, *e = p + *in_len; in mb_cp51932_to_wchar() local
280 while (p < e && out < limit) { in mb_cp51932_to_wchar()
281 unsigned char c = *p++; in mb_cp51932_to_wchar()
285 } else if (c >= 0xA1 && c <= 0xFE && p < e) { in mb_cp51932_to_wchar()
286 unsigned char c2 = *p++; in mb_cp51932_to_wchar()
324 } else if (c == 0x8E && p < e) { in mb_cp51932_to_wchar()
325 unsigned char c2 = *p++; in mb_cp51932_to_wchar()
336 *in_len = e - p; in mb_cp51932_to_wchar()
337 *in = p; in mb_cp51932_to_wchar()
H A Dmbfilter_big5.c393 unsigned char *p = *in, *e = p + *in_len; in mb_big5_to_wchar() local
396 while (p < e && out < limit) { in mb_big5_to_wchar()
397 unsigned char c = *p++; in mb_big5_to_wchar()
402 unsigned char c2 = *p++; in mb_big5_to_wchar()
418 *in_len = e - p; in mb_big5_to_wchar()
419 *in = p; in mb_big5_to_wchar()
467 unsigned char *p = *in, *e = p + *in_len; in mb_cp950_to_wchar() local
471 unsigned char c = *p++; in mb_cp950_to_wchar()
476 unsigned char c2 = *p++; in mb_cp950_to_wchar()
549 *in_len = e - p; in mb_cp950_to_wchar()
[all …]
H A Dmbfilter_sjis_2004.c754 unsigned char *p = *in, *e = p + *in_len; in mb_sjis2004_to_wchar() local
771 if (p == e) { in mb_sjis2004_to_wchar()
818 *in = p; in mb_sjis2004_to_wchar()
927 unsigned char *p = *in, *e = p + *in_len; in mb_eucjp2004_to_wchar() local
937 if (p == e) { in mb_eucjp2004_to_wchar()
1030 *in_len = e - p; in mb_eucjp2004_to_wchar()
1031 *in = p; in mb_eucjp2004_to_wchar()
1154 unsigned char *p = *in, *e = p + *in_len; in mb_iso2022jp2004_to_wchar() local
1164 p = e; in mb_iso2022jp2004_to_wchar()
1195 p--; in mb_iso2022jp2004_to_wchar()
[all …]
/PHP-8.2/ext/mbstring/
H A Dphp_unicode.c237 const unsigned *p = &_uccase_extra_table[code & 0xffffff]; in php_unicode_tolower_full() local
239 (next_filter->filter_function)(*++p, next_filter); in php_unicode_tolower_full()
251 const unsigned *p = &_uccase_extra_table[code & 0xffffff]; in php_unicode_toupper_full() local
253 (next_filter->filter_function)(*++p, next_filter); in php_unicode_toupper_full()
265 const unsigned *p = &_uccase_extra_table[code & 0xffffff]; in php_unicode_totitle_full() local
267 (next_filter->filter_function)(*++p, next_filter); in php_unicode_totitle_full()
279 const unsigned *p = &_uccase_extra_table[code & 0xffffff]; in php_unicode_tofold_full() local
281 (next_filter->filter_function)(*++p, next_filter); in php_unicode_tofold_full()
405 const unsigned char *p = (const unsigned char *) srcstr; in php_unicode_convert_case() local
408 if ((*to_wchar->filter_function)(*p++, to_wchar) < 0) { in php_unicode_convert_case()
/PHP-8.2/ext/sysvmsg/
H A Dsysvmsg.c321 const unsigned char *p = (const unsigned char *) messagebuffer->mtext; in PHP_FUNCTION() local
324 if (!php_var_unserialize(&tmp, &p, p + result, &var_hash)) { in PHP_FUNCTION()
381 char *p; in PHP_FUNCTION() local
384 p = Z_STRVAL_P(message); in PHP_FUNCTION()
388 message_len = spprintf(&p, 0, ZEND_LONG_FMT, Z_LVAL_P(message)); in PHP_FUNCTION()
391 message_len = spprintf(&p, 0, "0"); in PHP_FUNCTION()
394 message_len = spprintf(&p, 0, "1"); in PHP_FUNCTION()
397 message_len = spprintf(&p, 0, "%F", Z_DVAL_P(message)); in PHP_FUNCTION()
406 memcpy(messagebuffer->mtext, p, message_len + 1); in PHP_FUNCTION()
409 efree(p); in PHP_FUNCTION()
/PHP-8.2/Zend/tests/nullable_types/
H A Dcontravariant_nullable_param_succeeds.phpt7 function method(int $p);
11 function method(?int $p) { }
/PHP-8.2/ext/standard/tests/file/windows_mb_path/
H A Dtest_cp932_3.phpt27 $item = "�e�X�g�}���`�o�C�g�E�p�X77"; // cp932 string
40 string(%d) "%s\�e�X�g�}���`�o�C�g�E�p�X77"
43 �e�X�g�}���`�o�C�g�E�p�X77
/PHP-8.2/ext/spl/tests/
H A DarrayObject___construct_basic1.phpt10 $a->p = 'hello';
30 ["p"]=>
48 ["p"]=>
/PHP-8.2/ext/opcache/
H A Dshared_alloc_posix.c66 …shared_segment->common.p = mmap(0, requested_size, PROT_READ | PROT_WRITE, MAP_SHARED, shared_segm… in create_segments()
67 if (shared_segment->common.p == MAP_FAILED) { in create_segments()
82 munmap(shared_segment->common.p, shared_segment->common.size); in detach_segment()
H A DZendAccelerator.c195 (*p >= 'a' && *p <= 'z') || in is_stream_path()
196 (*p >= 'A' && *p <= 'Z') || in is_stream_path()
197 (*p >= '0' && *p <= '9') || in is_stream_path()
198 *p == '+' || *p == '-' || *p == '.'; in is_stream_path()
200 return ((p != filename) && (p[0] == ':') && (p[1] == '/') && (p[2] == '/')); in is_stream_path()
659 p->key = new_interned_string(p->key); in accel_copy_permanent_strings()
686 p->key = new_interned_string(p->key); in accel_copy_permanent_strings()
735 p->key = new_interned_string(p->key); in accel_copy_permanent_strings()
755 p->key = new_interned_string(p->key); in accel_copy_permanent_strings()
4309 for (; p != end; p++) {
[all …]
/PHP-8.2/tests/classes/
H A Dstatic_properties_undeclared_inc.phpt6 C::$p++;
9 Fatal error: Uncaught Error: Access to undeclared static property C::$p in %s:%d
H A Dstatic_properties_undeclared_assign.phpt6 C::$p = 1;
9 Fatal error: Uncaught Error: Access to undeclared static property C::$p in %s:%d
H A Dstatic_properties_undeclared_assignInc.phpt6 C::$p += 1;
9 Fatal error: Uncaught Error: Access to undeclared static property C::$p in %s:%d
/PHP-8.2/ext/phar/tests/cache_list/files/
H A Dwrite7.phar2 $p = new Phar(__FILE__);
4 $p->delete("test.txt");
/PHP-8.2/ext/opcache/jit/dynasm/
H A Dminilua.c1118 for(p=L->top;p>func;p--)setobj(L,p,p-1);
1136 Proto*p=cl->p;
1242 &p->buff,p->name);
1253 p.z=z;p.name=name;
2533 for(p=ci->base;p<ci->top;p++)
5271 p=cl->p->p[GETARG_Bx(i)];
5274 ncl->l.p=p;
5385 while(++p<L->top)setobj(L,p-1,p);
7107 if(*p=='^')p++;
7170 if(*p==0||*(p+1)==0)
[all …]
/PHP-8.2/ext/sodium/tests/
H A Dphp_password_verify.phpt51 Hash: string(97) "$argon2id$v=19$m=65536,t=2,p=1$%s$%s"
55 Hash: string(98) "$argon2id$v=19$m=262144,t=2,p=1$%s$%s"
59 Hash: string(97) "$argon2id$v=19$m=65536,t=3,p=1$%s$%s"
63 Hash: string(98) "$argon2id$v=19$m=262144,t=3,p=1$%s$%s"

Completed in 91 milliseconds

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