Home
last modified time | relevance | path

Searched refs:p (Results 251 – 275 of 728) sorted by relevance

1...<<11121314151617181920>>...30

/PHP-7.4/ext/phar/tests/cache_list/
H A Dcopyonwrite9.phar.phpt13 $p = new Phar(__FILE__);
14 var_dump($p->getStub());
16 $p->setStub("<?php __HALT"."_COMPILER();");
H A Dcopyonwrite10.phar.phpt13 $p = new Phar(__FILE__);
14 var_dump($p->getStub());
17 $p->setStub($a);
/PHP-7.4/ext/phar/tests/tar/
H A Dlinks5.phpt10 $p = new PharData(__DIR__ . '/files/subdirlink.tar');
14 echo $p['hi/test.txt']->getContent();
15 echo $p['hi/link.txt']->getContent();
/PHP-7.4/ext/reflection/tests/
H A Dbug36434.phpt23 foreach ($r->GetProperties() as $p)
25 echo $p->getName(). " ". $p->getDeclaringClass()->getName()."\n";
/PHP-7.4/Zend/tests/traits/
H A Dlanguage013.phpt28 $p = new C2();
29 $p->inc();
30 $p->inc();
/PHP-7.4/ext/standard/tests/streams/
H A Dbug64770.phpt15 $p = proc_open($cmd, $descs, $pipes, '.', NULL, $other_opts);
17 if (is_resource($p)) {
29 proc_terminate($p, 9);
42 $ret = proc_close($p);
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-7.4/ext/ffi/tests/
H A D040.phpt19 $p = FFI::addr($x);
20 var_dump($p);
21 $p[0] += 2;
35 $p = FFI::addr($y[0]);
36 var_dump($p);
37 $p[0] += 2;
/PHP-7.4/Zend/tests/multibyte/
H A Dmultibyte_encoding_003.phpt16 ��<�?�p�h�p
17p�r�i�n�t� �"�H�e�l�l�o� �W�o�r�l�d�\�n�"�;�
/PHP-7.4/ext/gd/libgd/
H A Dgd.c672 xlate[p] = gdImageColorClosestAlpha (from, to->red[p], to->green[p], to->blue[p], to->alpha[p]); in gdImagePaletteCopy()
765 int p; in gdImageSetPixel() local
785 if (p != gdTransparent && p != 0) { in gdImageSetPixel()
833 …return gdTrueColorAlpha(im->red[p], im->green[p], im->blue[p], (im->transparent == p) ? gdAlphaTra… in gdImageGetTrueColorPixel()
835 return p; in gdImageGetTrueColorPixel()
894 int p; in gdImageBrushApply() local
919 int p; in gdImageTileApply() local
929 p = gdTrueColorAlpha(tile->red[p], tile->green[p], tile->blue[p], tile->alpha[p]); in gdImageTileApply()
2641 gdImageLine (im, p->x, p->y, p[n - 1].x, p[n - 1].y, c); in gdImagePolygon()
2657 p++; in gdImageOpenPolygon()
[all …]
/PHP-7.4/ext/spl/tests/
H A DarrayObject___construct_basic6.phpt11 $ao->p = 1;
15 $ao->p = 1;
26 ["p"]=>
39 ["p"]=>
H A Dspl_iterator_recursive_getiterator_error.phpt10 p($iii);
11 function p ($i) {
18 #0 %s(%d): p(Object(IteratorIterator))
/PHP-7.4/Zend/tests/
H A Dbug26698.phpt62 $p = new Proxy();
64 $p->callOne();
65 $p->callTwo();
66 $p->callThree();
/PHP-7.4/Zend/
H A Dzend_opcode.c160 while (p != end) { in zend_cleanup_internal_class_data()
171 ZVAL_UNDEF(p); in zend_cleanup_internal_class_data()
172 p++; in zend_cleanup_internal_class_data()
176 while (p != end) { in zend_cleanup_internal_class_data()
187 p++; in zend_cleanup_internal_class_data()
275 while (p != end) { in destroy_zend_class()
277 p++; in destroy_zend_class()
285 while (p != end) { in destroy_zend_class()
296 p++; in destroy_zend_class()
354 p++; in destroy_zend_class()
[all …]
H A Dzend_string.c126 Bucket *p; in zend_interned_string_ht_lookup_ex() local
131 p = HT_HASH_TO_BUCKET(interned_strings, idx); in zend_interned_string_ht_lookup_ex()
132 if ((p->h == h) && (ZSTR_LEN(p->key) == size)) { in zend_interned_string_ht_lookup_ex()
133 if (!memcmp(ZSTR_VAL(p->key), str, size)) { in zend_interned_string_ht_lookup_ex()
134 return p->key; in zend_interned_string_ht_lookup_ex()
137 idx = Z_NEXT(p->val); in zend_interned_string_ht_lookup_ex()
148 Bucket *p; in zend_interned_string_ht_lookup() local
153 p = HT_HASH_TO_BUCKET(interned_strings, idx); in zend_interned_string_ht_lookup()
154 if ((p->h == h) && zend_string_equal_content(p->key, str)) { in zend_interned_string_ht_lookup()
155 return p->key; in zend_interned_string_ht_lookup()
[all …]
H A Dzend_alloc.h190 ZEND_API void * __zend_realloc(void *p, size_t len) ZEND_ATTRIBUTE_ALLOC_SIZE(2);
251 ZEND_API void ZEND_FASTCALL _zend_mm_free(zend_mm_heap *heap, void *p ZEND_FILE_LINE_DC ZEND_FILE…
254 ZEND_API size_t ZEND_FASTCALL _zend_mm_block_size(zend_mm_heap *heap, void *p ZEND_FILE_LINE_DC ZEN…
257 #define zend_mm_free(heap, p) _zend_mm_free((heap), (p) ZEND_FILE_LINE_CC ZEND_FILE_LINE_EMPTY_C… argument
258 #define zend_mm_realloc(heap, p, size) _zend_mm_realloc((heap), (p), (size) ZEND_FILE_LINE_CC ZEND… argument
259 #define zend_mm_realloc2(heap, p, size, copy_size) _zend_mm_realloc2((heap), (p), (size), (copy_siz… argument
260 #define zend_mm_block_size(heap, p) _zend_mm_block_size((heap), (p) ZEND_FILE_LINE_CC ZEND_FILE_L… argument
263 #define zend_mm_free_rel(heap, p) _zend_mm_free((heap), (p) ZEND_FILE_LINE_RELAY_CC ZEND_FILE_LIN… argument
264 #define zend_mm_realloc_rel(heap, p, size) _zend_mm_realloc((heap), (p), (size) ZEND_FILE_LINE_RELA… argument
265 #define zend_mm_realloc2_rel(heap, p, size, copy_size) _zend_mm_realloc2((heap), (p), (size), (copy… argument
[all …]
/PHP-7.4/main/
H A Dsnprintf.c68 char *p, *rve, c; in __cvt() local
94 c = *p; in __cvt()
95 zend_freedtoa(p); in __cvt()
108 zend_freedtoa(p); in __cvt()
357 return (p); in ap_php_conv_10()
418 *s++ = *p++; in php_conv_fp()
428 *s++ = *p++; in php_conv_fp()
437 while (*p) { in php_conv_fp()
438 *s++ = *p++; in php_conv_fp()
456 *s++ = *p++; in php_conv_fp()
[all …]
H A Dphp_variables.c106 for (p = var; *p; p++) { in php_register_variable_ex()
107 if (*p == ' ' || *p == '.') { in php_register_variable_ex()
108 *p='_'; in php_register_variable_ex()
111 ip = p; in php_register_variable_ex()
112 *p = 0; in php_register_variable_ex()
561 char *p; in import_environment_variable() local
567 if (!p in import_environment_variable()
568 || p == env in import_environment_variable()
574 p++; in import_environment_variable()
906 char *p; in php_auto_globals_create_request() local
[all …]
/PHP-7.4/ext/pspell/tests/
H A D003.phpt14 $p = pspell_new_config($cfg);
15 var_dump(pspell_check($p, 'yy'));
22 $p = pspell_new_config($cfg);
23 var_dump(pspell_check($p, 'yy'));
/PHP-7.4/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.phpt22 $text = '<p>hello world &trade;</p>';
38 string(63) "<div id="test">&lt;p&gt;hello world &amp;trade;&lt;/p&gt;</div>"
/PHP-7.4/ext/standard/tests/serialize/
H A Dserialization_objects_005.phpt26 var_dump($complete->p);
29 $complete->p = &$ref1;
30 var_dump($complete->p);
32 var_dump($complete->p);
33 $complete->p = "p.changed";
49 $incomplete->p = &$ref2;
53 $incomplete->p = "p.changed";
69 ["p"]=>
76 string(9) "p.changed"
88 ["p"]=>
[all …]
/PHP-7.4/ext/sodium/
H A Dsodium_pwhash.c117 const char* p = NULL; in php_sodium_argon2_get_info() local
126 p = ZSTR_VAL(hash); in php_sodium_argon2_get_info()
127 if (!memcmp(p, "$argon2i$", strlen("$argon2i$"))) { in php_sodium_argon2_get_info()
128 p += strlen("$argon2i$"); in php_sodium_argon2_get_info()
129 } else if (!memcmp(p, "$argon2id$", strlen("$argon2id$"))) { in php_sodium_argon2_get_info()
130 p += strlen("$argon2id$"); in php_sodium_argon2_get_info()
135 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-7.4/ext/pcre/tests/
H A Dbug80118.phpt5 preg_match('~[^\p{Han}\p{Z}]~u', ' ', $matches);
/PHP-7.4/ext/opcache/tests/
H A Dissue0149.phpt19 $p = new Phar(__DIR__ . '/issue0149.phar.php', 0, 'this');
20 $p['index.php'] = ""; # A Phar must have at least one file, hence this dummy
21 $p->setStub($stub);
22 unset($p);

Completed in 50 milliseconds

1...<<11121314151617181920>>...30