Home
last modified time | relevance | path

Searched refs:func (Results 51 – 75 of 266) sorted by relevance

1234567891011

/PHP-7.4/Zend/
H A Dzend_llist.h56 ZEND_API void zend_llist_apply(zend_llist *l, llist_apply_func_t func);
57 ZEND_API void zend_llist_apply_with_del(zend_llist *l, int (*func)(void *data));
58 ZEND_API void zend_llist_apply_with_argument(zend_llist *l, llist_apply_with_arg_func_t func, void …
59 ZEND_API void zend_llist_apply_with_arguments(zend_llist *l, llist_apply_with_args_func_t func, int…
H A Dzend_portability.h570 # define ZEND_INTRIN_SSSE3_FUNC_DECL(func) ZEND_API func __attribute__((target("ssse3"))) argument
572 # define ZEND_INTRIN_SSSE3_FUNC_DECL(func) func argument
575 # define ZEND_INTRIN_SSSE3_FUNC_DECL(func) argument
595 # define ZEND_INTRIN_SSE4_2_FUNC_DECL(func) ZEND_API func __attribute__((target("sse4.2"))) argument
597 # define ZEND_INTRIN_SSE4_2_FUNC_DECL(func) func argument
600 # define ZEND_INTRIN_SSE4_2_FUNC_DECL(func) argument
618 # define ZEND_INTRIN_AVX2_FUNC_DECL(func) ZEND_API func __attribute__((target("avx2"))) argument
620 # define ZEND_INTRIN_AVX2_FUNC_DECL(func) func argument
623 # define ZEND_INTRIN_AVX2_FUNC_DECL(func) argument
H A Dzend_llist.c162 ZEND_API void zend_llist_apply_with_del(zend_llist *l, int (*func)(void *data)) in zend_llist_apply_with_del()
169 if (func(element->data)) { in zend_llist_apply_with_del()
177 ZEND_API void zend_llist_apply(zend_llist *l, llist_apply_func_t func) in zend_llist_apply() argument
182 func(element->data); in zend_llist_apply()
229 ZEND_API void zend_llist_apply_with_argument(zend_llist *l, llist_apply_with_arg_func_t func, void … in zend_llist_apply_with_argument() argument
234 func(element->data, arg); in zend_llist_apply_with_argument()
239 ZEND_API void zend_llist_apply_with_arguments(zend_llist *l, llist_apply_with_args_func_t func, int… in zend_llist_apply_with_arguments() argument
246 func(element->data, num_args, args); in zend_llist_apply_with_arguments()
H A Dzend_dtrace.c34 while (ex && (!ex->func || !ZEND_USER_CODE(ex->func->type))) { in dtrace_get_executed_filename()
38 return ZSTR_VAL(ex->func->op_array.filename); in dtrace_get_executed_filename()
/PHP-7.4/ext/openssl/tests/
H A Dbug70395.phpt9 $func = new ReflectionFunction('openssl_seal');
10 $param = $func->getParameters()[4];
/PHP-7.4/Zend/tests/type_declarations/variance/
H A Dtrait_success.phpt15 abstract public function func(): ?InterfaceA;
19 public function func(): ?InterfaceB {}
/PHP-7.4/Zend/tests/
H A Dbug48409.phpt29 public function func()
41 } // end func();
49 $x->func();
H A Dmagic_by_ref_006.phpt11 $func = "foo";
13 $t->$func();
H A Dassign_ref_func_leak.phpt6 function func() {
10 $x = $y =& func();
H A Dmagic_by_ref_007.phpt11 $func = "foo";
14 $t->$func($arg);
H A Dns_trailing_comma_01.phpt8 echo "Foo func\n";
29 Foo func
H A Dbug64966.phpt5 function test($func) {
7 $a = $func("");
H A Dbug63741.phpt12 static function func ()
35 ClassToLoad::func();
/PHP-7.4/ext/mysqlnd/
H A Dmysqlnd_ps_codec.c400 mysqlnd_ps_fetch_functions[MYSQL_TYPE_NULL].func = ps_fetch_null; in _mysqlnd_init_ps_fetch_subsystem()
405 mysqlnd_ps_fetch_functions[MYSQL_TYPE_TINY].func = ps_fetch_int8; in _mysqlnd_init_ps_fetch_subsystem()
410 mysqlnd_ps_fetch_functions[MYSQL_TYPE_SHORT].func = ps_fetch_int16; in _mysqlnd_init_ps_fetch_subsystem()
415 mysqlnd_ps_fetch_functions[MYSQL_TYPE_YEAR].func = ps_fetch_int16; in _mysqlnd_init_ps_fetch_subsystem()
420 mysqlnd_ps_fetch_functions[MYSQL_TYPE_INT24].func = ps_fetch_int32; in _mysqlnd_init_ps_fetch_subsystem()
425 mysqlnd_ps_fetch_functions[MYSQL_TYPE_LONG].func = ps_fetch_int32; in _mysqlnd_init_ps_fetch_subsystem()
435 mysqlnd_ps_fetch_functions[MYSQL_TYPE_FLOAT].func = ps_fetch_float; in _mysqlnd_init_ps_fetch_subsystem()
445 mysqlnd_ps_fetch_functions[MYSQL_TYPE_TIME].func = ps_fetch_time; in _mysqlnd_init_ps_fetch_subsystem()
450 mysqlnd_ps_fetch_functions[MYSQL_TYPE_DATE].func = ps_fetch_date; in _mysqlnd_init_ps_fetch_subsystem()
470 mysqlnd_ps_fetch_functions[MYSQL_TYPE_JSON].func = ps_fetch_string; in _mysqlnd_init_ps_fetch_subsystem()
[all …]
/PHP-7.4/ext/standard/tests/array/
H A Dbug34982.phpt10 func($ar);
13 function func($a) {
/PHP-7.4/ext/standard/tests/
H A Dbug75220.phpt12 function bar($func)
19 function __call($func, $args)
/PHP-7.4/ext/standard/tests/general_functions/
H A Dis_callable_variation2.phpt16 foreach($functions as $func) {
18 var_dump( is_callable($func) ); //given only $var argument
19 var_dump( is_callable($func, TRUE) ); //given $var and $syntax argument
20 var_dump( is_callable($func, TRUE, $callable_name) );
22 var_dump( is_callable($func, FALSE) ); //given $var and $syntax argument
23 var_dump( is_callable($func, FALSE, $callable_name) );
/PHP-7.4/ext/reflection/tests/
H A Dbug63614.phpt13 public function func()
23 $reflect = new ReflectionMethod('Test', 'func');
/PHP-7.4/ext/spl/tests/
H A Dbug61697.phpt14 foreach (spl_autoload_functions() AS $func)
16 spl_autoload_unregister($func);
H A Dspl_autoload_008.phpt41 foreach($funcs as $idx => $func)
47 var_dump($func);
48 spl_autoload_register($func);
61 spl_autoload_unregister($func);
/PHP-7.4/ext/soap/tests/bugs/
H A Dbug29830.phpt20 foreach($functions as $func) {
21 echo $func . "\n";
/PHP-7.4/ext/xmlrpc/tests/
H A Dbug50285.phpt8 function test1($func, $params) {
12 function test2($func, $params) {
16 function test3($func, $params) {
20 function test4($func, $params) {
/PHP-7.4/sapi/phpdbg/
H A Dphpdbg_opcode.c155 char *decode = phpdbg_decode_opline(&execute_data->func->op_array, opline); in phpdbg_print_opline_ex()
163 …execute_data->func->op_array.filename ? ZSTR_VAL(execute_data->func->op_array.filename) : "unknown… in phpdbg_print_opline_ex()
171 …execute_data->func->op_array.filename ? ZSTR_VAL(execute_data->func->op_array.filename) : "unknown… in phpdbg_print_opline_ex()
179 zend_op_array *op_array = &execute_data->func->op_array; in phpdbg_print_opline_ex()
/PHP-7.4/Zend/tests/generators/
H A Dyield_in_parenthesis.phpt14 func(yield $foo);
15 $foo->func(yield $foo);
/PHP-7.4/Zend/tests/return_types/
H A D013.phpt15 var_dump($func=$baz->bar(), $func());

Completed in 31 milliseconds

1234567891011