Home
last modified time | relevance | path

Searched refs:args (Results 51 – 75 of 513) sorted by relevance

12345678910>>...21

/PHP-8.1/sapi/phpdbg/
H A Dphpdbg_cmd.h97 char *args; /* Argument Spec */ member
158 #define PHPDBG_COMMAND_D_EXP(name, tip, alias, handler, children, args, parent, flags) \ argument
159 {PHPDBG_STRL(#name), tip, sizeof(tip)-1, alias, phpdbg_do_##handler, children, args, parent, flags}
161 #define PHPDBG_COMMAND_D_EX(name, tip, alias, handler, children, args, flags) \ argument
162 {PHPDBG_STRL(#name), tip, sizeof(tip)-1, alias, phpdbg_do_##handler, children, args, NULL, flags}
164 #define PHPDBG_COMMAND_D(name, tip, alias, children, args, flags) \ argument
165 {PHPDBG_STRL(#name), tip, sizeof(tip)-1, alias, phpdbg_do_##name, children, args, NULL, flags}
/PHP-8.1/sapi/fuzzer/
H A Dfuzzer-sapi.c276 void fuzzer_call_php_func_zval(const char *func_name, int nargs, zval *args) { in fuzzer_call_php_func_zval() argument
281 call_user_function(CG(function_table), NULL, &func, &retval, nargs, args); in fuzzer_call_php_func_zval()
294 zval args[nargs]; in fuzzer_call_php_func() local
298 ZVAL_STRING(&args[i], params[i]); in fuzzer_call_php_func()
301 fuzzer_call_php_func_zval(func_name, nargs, args); in fuzzer_call_php_func()
304 zval_ptr_dtor(&args[i]); in fuzzer_call_php_func()
305 ZVAL_UNDEF(&args[i]); in fuzzer_call_php_func()
/PHP-8.1/Zend/tests/named_params/
H A D__call.phpt7 public function __call(string $method, array $args) {
8 $this->{'_'.$method}(...$args);
11 public static function __callStatic(string $method, array $args) {
12 (new static)->{'_'.$method}(...$args);
/PHP-8.1/Zend/tests/attributes/
H A D031_backtrace.phpt40 ["args"]=>
59 ["args"]=>
77 ["args"]=>
93 ["args"]=>
H A D013_class_scope.phpt72 $args = $ref->getAttributes()[0]->getArguments();
73 var_dump($args[0] == $ref->getName(), $args[1]);
75 $args = $ref->getMethod('bar')->getAttributes()[0]->getArguments();
76 var_dump($args[0] == $ref->getName(), $args[1]);
/PHP-8.1/ext/standard/tests/strings/
H A Dsscanf_basic1.phpt14 echo "\n-- Try sccanf() WITHOUT optional args --\n";
19 echo "\n-- Try sccanf() WITH optional args --\n";
28 -- Try sccanf() WITHOUT optional args --
33 -- Try sccanf() WITH optional args --
H A Dsscanf_basic2.phpt14 echo "\n-- Try sccanf() WITHOUT optional args --\n";
19 echo "\n-- Try sccanf() WITH optional args --\n";
28 -- Try sccanf() WITHOUT optional args --
33 -- Try sccanf() WITH optional args --
H A Dsscanf_basic3.phpt11 echo "\n-- Try sccanf() WITHOUT optional args --\n";
16 echo "\n-- Try sccanf() WITH optional args --\n";
25 -- Try sccanf() WITHOUT optional args --
31 -- Try sccanf() WITH optional args --
H A Dsscanf_basic4.phpt11 echo "\n-- Try sccanf() WITHOUT optional args --\n";
16 echo "\n-- Try sccanf() WITH optional args --\n";
25 -- Try sccanf() WITHOUT optional args --
31 -- Try sccanf() WITH optional args --
H A Dsscanf_basic7.phpt11 echo "\n-- Try sccanf() WITHOUT optional args --\n";
16 echo "\n-- Try sccanf() WITH optional args --\n";
25 -- Try sccanf() WITHOUT optional args --
33 -- Try sccanf() WITH optional args --
H A Dsscanf_basic6.phpt17 echo "\n-- Try sccanf() WITHOUT optional args --\n";
22 echo "\n-- Try sccanf() WITH optional args --\n";
31 -- Try sccanf() WITHOUT optional args --
39 -- Try sccanf() WITH optional args --
/PHP-8.1/ext/reflection/tests/
H A DReflectionGenerator_getTrace.phpt37 ["args"]=>
49 ["args"]=>
57 ["args"]=>
H A DReflectionFiber_bug_gh11121_1.phpt38 ["args"]=>
50 ["args"]=>
58 ["args"]=>
H A DReflectionFiber_bug_gh11121_2.phpt39 ["args"]=>
51 ["args"]=>
59 ["args"]=>
/PHP-8.1/Zend/tests/
H A Dbug73156.phpt6 public function __call($name, $args) {
7 eval('$args = array(); var_dump(debug_backtrace());');
41 ["args"]=>
H A Dclosure_032.phpt24 [args] => Array
40 [args] => Array
52 [args] => Array
/PHP-8.1/ext/hash/
H A Dphp_hash_xxhash.h28 PHP_HASH_API void PHP_XXH32Init(PHP_XXH32_CTX *ctx, HashTable *args);
38 PHP_HASH_API void PHP_XXH64Init(PHP_XXH64_CTX *ctx, HashTable *args);
60 PHP_HASH_API void PHP_XXH3_64_Init(PHP_XXH3_64_CTX *ctx, HashTable *args);
67 PHP_HASH_API void PHP_XXH3_128_Init(PHP_XXH3_128_CTX *ctx, HashTable *args);
H A Dhash_murmur.c39 PHP_HASH_API void PHP_MURMUR3AInit(PHP_MURMUR3A_CTX *ctx, HashTable *args) in PHP_MURMUR3AInit() argument
41 if (args) { in PHP_MURMUR3AInit()
42 zval *seed = zend_hash_str_find_deref(args, "seed", sizeof("seed") - 1); in PHP_MURMUR3AInit()
96 PHP_HASH_API void PHP_MURMUR3CInit(PHP_MURMUR3C_CTX *ctx, HashTable *args) in PHP_MURMUR3CInit() argument
98 if (args) { in PHP_MURMUR3CInit()
99 zval *seed = zend_hash_str_find_deref(args, "seed", sizeof("seed") - 1); in PHP_MURMUR3CInit()
170 PHP_HASH_API void PHP_MURMUR3FInit(PHP_MURMUR3F_CTX *ctx, HashTable *args) in PHP_MURMUR3FInit() argument
172 if (args) { in PHP_MURMUR3FInit()
173 zval *seed = zend_hash_str_find_deref(args, "seed", sizeof("seed") - 1); in PHP_MURMUR3FInit()
/PHP-8.1/ext/openssl/tests/
H A Dbug50293.phpt21 $args = array(
33 $csr = openssl_csr_new($dn, $privkey, $args);
34 $sscert = openssl_csr_sign($csr, null, $privkey, 365, $args);
38 openssl_pkey_export_to_file($privkey, "bug50293.pem", null, $args);
H A Decc.phpt12 $args = array(
18 $key1 = openssl_pkey_new($args);
65 $csr = openssl_csr_new($dn, $keyGenerate, $args);
69 $args["digest_alg"] = "sha256";
71 $csr = openssl_csr_new($dn, $key1, $args);
79 $x509 = openssl_csr_sign($csr, null, $key1, 365, $args);
85 $key3 = openssl_pkey_new($args);
/PHP-8.1/ext/opcache/tests/opt/
H A Dcoalesce.phpt26 ; (lines=1, args=0, vars=0, tmps=0)
32 ; (lines=2, args=0, vars=1, tmps=1)
39 ; (lines=2, args=0, vars=1, tmps=1)
/PHP-8.1/ext/opcache/jit/dynasm/
H A Ddynasm.lua161 local argn = args.argn
162 local p = args[argn]
166 args.argn = argn + 1
196 function opt_map.D(args)
1011 function opt_map.outfile(args) g_opt.outfile = optparam(args) end
1039 f(args)
1052 args.argn = 1
1054 local a = args[args.argn]
1058 args.argn = args.argn + 1
1069 local nargs = #args - args.argn + 1
[all …]
/PHP-8.1/ext/spl/tests/
H A Dbug73896.phpt6 public static function call($callable, array $args) {
7 return call_user_func_array($callable, [$args]);
16 public function __call($method, $args) {
/PHP-8.1/Zend/tests/arg_unpack/
H A Dmany_args.phpt6 function f(...$args) {
7 var_dump(count($args));
/PHP-8.1/ext/opcache/tests/
H A Dbug79475.phpt8 $args = func_get_args();
9 $args[] = "bar";

Completed in 46 milliseconds

12345678910>>...21