Home
last modified time | relevance | path

Searched refs:p (Results 476 – 500 of 937) sorted by relevance

1...<<11121314151617181920>>...38

/php-src/ext/gd/libgd/
H A Dgd_avif.c412 uint8_t *p = rgb.pixels; in gdImageCreateFromAvifCtx() local
416 uint8_t r = *(p++); in gdImageCreateFromAvifCtx()
417 uint8_t g = *(p++); in gdImageCreateFromAvifCtx()
418 uint8_t b = *(p++); in gdImageCreateFromAvifCtx()
419 uint8_t a = alpha8BitTo7Bit(*(p++)); in gdImageCreateFromAvifCtx()
494 uint8_t *p; in gdImageAvifCtx() local
537 p = rgb.pixels; in gdImageAvifCtx()
542 *(p++) = gdTrueColorGetRed(val); in gdImageAvifCtx()
543 *(p++) = gdTrueColorGetGreen(val); in gdImageAvifCtx()
544 *(p++) = gdTrueColorGetBlue(val); in gdImageAvifCtx()
[all …]
/php-src/ext/phar/tests/
H A Dbug71391.phpt9 $p = new PharData(__DIR__."/bug71391.test.tar");
10 $p->delMetaData();
/php-src/ext/phar/tests/cache_list/files/
H A Dwrite7.phar.inc8 $p = new Phar(__FILE__);
10 $p->delete("test.txt");
H A Dwrite18.phar.inc8 $p = new Phar(__FILE__);
10 $p["test.txt"]->chmod(0444);
/php-src/ext/dom/tests/
H A Dbug47531_b.phpt19 <p xmlns:foo="other:ns">
22 </p>
53 <p xmlns:foo="other:ns">
56 </p>
/php-src/sapi/phpdbg/tests/
H A Dprint_001.phpt6 p foo
7 p class \Foo\bar
8 p
9 p e
/php-src/sapi/phpdbg/
H A Dphpdbg_prompt.c778 while (*p == ' ') p++; in PHPDBG_COMMAND()
785 do p++; while (*p == ' '); in PHPDBG_COMMAND()
787 if (*p == '\'' || *p == '"') { in PHPDBG_COMMAND()
790 while (*p && *p != sep) { in PHPDBG_COMMAND()
791 if (*p == '\\' && (p[1] == sep || p[1] == '\\')) { in PHPDBG_COMMAND()
798 do p++; while (*p == ' '); in PHPDBG_COMMAND()
820 if (*p == '\'' || *p == '"') { in PHPDBG_COMMAND()
823 if (*p == '\\' && (p[1] == '<' || p[1] == '\'' || p[1] == '"')) { in PHPDBG_COMMAND()
826 while (*p && *p != sep) { in PHPDBG_COMMAND()
827 if (*p == '\\' && (p[1] == sep || p[1] == '\\' || (p[1] == '#' && sep == ' '))) { in PHPDBG_COMMAND()
[all …]
/php-src/ext/fileinfo/libmagic/
H A Dfuncs.c77 const char *p = *pp; in file_checkfield() local
80 while (*p && isdigit((unsigned char)*p)) in file_checkfield()
83 *pp = p; in file_checkfield()
96 const char *p; in file_checkfmt() local
97 for (p = fmt; *p; p++) { in file_checkfmt()
98 if (*p != '%') in file_checkfmt()
100 if (*++p == '%') in file_checkfmt()
104 p++; in file_checkfmt()
105 if (*p == '*') { in file_checkfmt()
114 if (*p == '.') { in file_checkfmt()
[all …]
/php-src/ext/pcre/tests/
H A Dpreg_match_latin.phpt5 preg_match('/^[\w\p{Cyrillic}\s\-\']+$/u', 'latin', $test1);
6 preg_match('/^[\w\p{Cyrillic}\s\-\']+$/u', 'кириллица', $test2);
/php-src/ext/filter/
H A Dsanitizing_filters.c65 unsigned char *p; in php_filter_encode_url() local
78 p = (unsigned char *) ZSTR_VAL(str); in php_filter_encode_url()
84 *p++ = '%'; in php_filter_encode_url()
85 *p++ = hexchars[(unsigned char) *s >> 4]; in php_filter_encode_url()
86 *p++ = hexchars[(unsigned char) *s & 15]; in php_filter_encode_url()
88 *p++ = *s; in php_filter_encode_url()
92 *p = '\0'; in php_filter_encode_url()
93 ZSTR_LEN(str) = p - (unsigned char *)ZSTR_VAL(str); in php_filter_encode_url()
/php-src/ext/xml/tests/
H A Dxml_parse_into_struct_variation.phpt10 $p = xml_parser_create();
11 xml_parse_into_struct($p, $simple, $vals, $index);
12 xml_parser_free($p);
/php-src/ext/reflection/tests/
H A Dbug76936.phpt36 foreach ((new ReflectionObject($f))->getProperties() as $p) {
37 echo $p->getName() .' = '. $p->getValue($f) ."\n";
/php-src/ext/standard/tests/general_functions/
H A Dvar_export_basic8.phpt7 $o1->p = '22';
35 'p' => '22',
62 'p' => '22',
/php-src/ext/libxml/tests/
H A Dlibxml_entity_loading_disabled_by_default.phpt31 $p = xml_parser_create();
32 xml_parse_into_struct($p, $xml, $vals, $index);
33 xml_parser_free($p);
/php-src/Zend/tests/
H A Dbug72177.phpt28 $p = new Parnt();
29 $p->doSomething();
/php-src/ext/dom/tests/modern/html/parser/
H A DHTMLDocument_fromFile_parser_warning_01.phpt19 <p>error</p></body></html>
/php-src/ext/hash/
H A Dphp_hash_haval.h32 #define PHP_HASH_HAVAL_INIT_DECL(p,b) PHP_HASH_API void PHP_##p##HAVAL##b##Init(PHP_HAVAL_CTX *, ZE… argument
/php-src/sapi/cgi/
H A Dcgi_main.c1063 if (UNEXPECTED(*p == '.') && *(p+1) == '.' && (!*(p+2) || IS_SLASH(*(p+2)))) {
1068 p++;
1070 p++;
1072 p++;
1079 p++;
1629 p++;
1631 if (*p && *p!='=') {
1634 } else if (*p >= 'A' && *p <= 'Z') {
1681 p++;
1682 } while (*p == ' ' || *p == '\t');
[all …]
/php-src/ext/mysqli/tests/
H A Dmysqli_stmt_execute_stored_proc.phpt24 if (!mysqli_query($link, 'DROP PROCEDURE IF EXISTS p'))
27 …if (mysqli_real_query($link, 'CREATE PROCEDURE p(OUT ver_param VARCHAR(25)) BEGIN SELECT VERSION()…
29 if (!$stmt = mysqli_prepare($link, 'CALL p(@version)'))
66 if (!mysqli_query($link, 'DROP PROCEDURE IF EXISTS p'))
69 …if (mysqli_real_query($link, 'CREATE PROCEDURE p(OUT ver_param VARCHAR(25)) BEGIN SELECT VERSION()…
71 if (!$stmt = mysqli_prepare($link, 'CALL p(@version)'))
101 if (!mysqli_query($link, 'DROP PROCEDURE IF EXISTS p'))
107 if (!$stmt = mysqli_prepare($link, "CALL p('myversion', @version)"))
139 if (!mysqli_query($link, 'DROP PROCEDURE IF EXISTS p'))
145 if (!$stmt = mysqli_prepare($link, 'CALL p(?, @version)'))
[all …]
/php-src/sapi/fpm/fpm/
H A Dfpm_main.c879 if (p) { in is_valid_path()
880 if ((p == path || IS_SLASH(*(p-1))) && in is_valid_path()
881 (*(p+2) == 0 || IS_SLASH(*(p+2))) in is_valid_path()
886 p = strstr(p+1, ".."); in is_valid_path()
891 (*(p+2) == 0 || IS_SLASH(*(p+2))) in is_valid_path()
1033 while (*p != '\0' && *p != '/') { in init_request_info()
1040 memmove(env_script_filename, p, strlen(p) + 1); in init_request_info()
1046 *p =0; in init_request_info()
1054 while (*p != '\0' && *p != '/') { in init_request_info()
1061 memmove(env_script_filename, p, strlen(p) + 1); in init_request_info()
[all …]
/php-src/ext/session/tests/
H A Dbug36459.phpt25 <p>See source html code</p>
41 <p>See source html code</p>
/php-src/ext/opcache/
H A Dzend_shared_alloc.h80 void *p; member
143 void *p = zend_shared_alloc(size + 64); in zend_shared_alloc_aligned() local
144 return (void *)(((uintptr_t)p + 63L) & ~63L); in zend_shared_alloc_aligned()
158 int zend_shared_memdup_size(void *p, size_t size);
H A DZendAccelerator.c650 p->key = new_interned_string(p->key); in accel_copy_permanent_strings()
677 p->key = new_interned_string(p->key); in accel_copy_permanent_strings()
726 p->key = new_interned_string(p->key); in accel_copy_permanent_strings()
746 p->key = new_interned_string(p->key); in accel_copy_permanent_strings()
752 p->key = new_interned_string(p->key); in accel_copy_permanent_strings()
760 p->key = new_interned_string(p->key); in accel_copy_permanent_strings()
776 p->key = new_interned_string(p->key); in accel_copy_permanent_strings()
783 p->key = new_interned_string(p->key); in accel_copy_permanent_strings()
790 p->key = new_interned_string(p->key); in accel_copy_permanent_strings()
4312 for (; p != end; p++) {
[all …]
/php-src/ext/opcache/jit/ir/dynasm/
H A Ddasm_mips.h153 D->status = DASM_S_##st|(int)(p-D->actionlist-1); return; } } while (0)
167 dasm_ActList p = D->actionlist + start; in dasm_put() local
184 unsigned int ins = *p++; in dasm_put()
195 case DASM_ESC: p++; ofs += 4; break; in dasm_put()
286 dasm_ActList p = D->actionlist + b[pos++]; in dasm_link() local
288 unsigned int ins = *p++; in dasm_link()
292 case DASM_ESC: p++; break; in dasm_link()
312 do { if (!(x)) return DASM_S_##st|(int)(p-D->actionlist-1); } while (0)
332 dasm_ActList p = D->actionlist + *b++; in dasm_encode() local
334 unsigned int ins = *p++; in dasm_encode()
[all …]
H A Ddasm_ppc.h153 D->status = DASM_S_##st|(p-D->actionlist-1); return; } } while (0)
167 dasm_ActList p = D->actionlist + start; in dasm_put() local
184 unsigned int ins = *p++; in dasm_put()
195 case DASM_ESC: p++; ofs += 4; break; in dasm_put()
290 dasm_ActList p = D->actionlist + b[pos++]; in dasm_link() local
292 unsigned int ins = *p++; in dasm_link()
296 case DASM_ESC: p++; break; in dasm_link()
316 do { if (!(x)) return DASM_S_##st|(p-D->actionlist-1); } while (0)
336 dasm_ActList p = D->actionlist + *b++; in dasm_encode() local
338 unsigned int ins = *p++; in dasm_encode()
[all …]

Completed in 112 milliseconds

1...<<11121314151617181920>>...38