Home
last modified time | relevance | path

Searched refs:arg4 (Results 1 – 16 of 16) sorted by relevance

/PHP-8.2/ext/standard/tests/strings/
H A Dsscanf_basic5.phpt14 list($arg1, $arg2, $arg3, $arg4) = sscanf($str, $format1);
15 var_dump($arg1, $arg2, $arg3, $arg4);
16 list($arg1, $arg2, $arg3, $arg4) = sscanf($str, $format2);
17 var_dump($arg1, $arg2, $arg3, $arg4);
21 $res = sscanf($str, $format1, $arg1, $arg2, $arg3, $arg4);
22 var_dump($res, $arg1, $arg2, $arg3, $arg4);
23 $res = sscanf($str, $format2,$arg1, $arg2, $arg3, $arg4);
24 var_dump($res, $arg1, $arg2, $arg3, $arg4);
H A Dsscanf_basic8.phpt14 list($arg1, $arg2, $arg3, $arg4, $arg5, $arg6) = sscanf($str, $format1);
15 var_dump($arg1, $arg2, $arg3, $arg4, $arg5, $arg6);
16 list($arg1, $arg2, $arg3, $arg4, $arg5, $arg6) = sscanf($str, $format2);
17 var_dump($arg1, $arg2, $arg3, $arg4, $arg5, $arg6);
21 $res = sscanf($str, $format1, $arg1, $arg2, $arg3, $arg4, $arg5, $arg6);
22 var_dump($res, $arg1, $arg2, $arg3, $arg4, $arg5, $arg6);
23 $res = sscanf($str, $format2, $arg1, $arg2, $arg3, $arg4, $arg5, $arg6);
24 var_dump($res, $arg1, $arg2, $arg3, $arg4, $arg5, $arg6);
H A Dsscanf_basic4.phpt13 list($arg1, $arg2, $arg3, $arg4) = sscanf($str, $format);
14 var_dump($arg1, $arg2, $arg3, $arg4);
18 $res = sscanf($str, $format, $arg1, $arg2, $arg3, $arg4);
19 var_dump($res, $arg1, $arg2, $arg3, $arg4);
H A Dsscanf_basic7.phpt13 list($arg1, $arg2, $arg3, $arg4, $arg5, $arg6) = sscanf($str, $format);
14 var_dump($arg1, $arg2, $arg3, $arg4, $arg5, $arg6);
18 $res = sscanf($str, $format, $arg1, $arg2, $arg3, $arg4, $arg5, $arg6);
19 var_dump($res, $arg1, $arg2, $arg3, $arg4, $arg5, $arg6);
H A Dsscanf_basic6.phpt19 list($arg1, $arg2, $arg3, $arg4, $arg5, $arg6) = sscanf($str, $format);
20 var_dump($arg1, $arg2, $arg3, $arg4, $arg5, $arg6);
24 $res = sscanf($str, $format, $arg1, $arg2, $arg3, $arg4, $arg5, $arg6);
25 var_dump($res, $arg1, $arg2, $arg3, $arg4, $arg5, $arg6);
/PHP-8.2/ext/sockets/
H A Dmulticast.c162 convert_to_array(arg4); in php_do_mcast_opt()
163 opt_ht = Z_ARRVAL_P(arg4); in php_do_mcast_opt()
198 convert_to_array(arg4); in php_do_mcast_opt()
238 zval *arg4) in php_do_setsockopt_ip_mcast() argument
275 convert_to_boolean(arg4); in php_do_setsockopt_ip_mcast()
280 convert_to_long(arg4); in php_do_setsockopt_ip_mcast()
281 if (Z_LVAL_P(arg4) < 0L || Z_LVAL_P(arg4) > 255L) { in php_do_setsockopt_ip_mcast()
307 zval *arg4) in php_do_setsockopt_ipv6_mcast() argument
340 convert_to_boolean(arg4); in php_do_setsockopt_ipv6_mcast()
344 convert_to_long(arg4); in php_do_setsockopt_ipv6_mcast()
[all …]
H A Dmulticast.h48 zval *arg4);
53 zval *arg4);
H A Dsockets.c1366 zend_long arg3, arg4; local
1761 zval *arg1, *arg4; local
1835 convert_to_array(arg4);
1836 opt_ht = Z_ARRVAL_P(arg4);
1863 convert_to_array(arg4);
1864 opt_ht = Z_ARRVAL_P(arg4);
1928 optlen = Z_STRLEN_P(arg4);
1935 convert_to_long(arg4);
1937 if (!Z_LVAL_P(arg4)) {
1970 convert_to_long(arg4);
[all …]
H A Dsendrecvmsg.h17 int php_do_setsockopt_ipv6_rfc3542(php_socket *php_sock, int level, int optname, zval *arg4);
H A Dsendrecvmsg.c330 int php_do_setsockopt_ipv6_rfc3542(php_socket *php_sock, int level, int optname, zval *arg4) in php_do_setsockopt_ipv6_rfc3542() argument
344 if (Z_TYPE_P(arg4) == IS_ARRAY) { in php_do_setsockopt_ipv6_rfc3542()
355 opt_ptr = from_zval_run_conversions(arg4, php_sock, from_zval_write_in6_pktinfo, in php_do_setsockopt_ipv6_rfc3542()
/PHP-8.2/ext/pcre/pcre2lib/sljit/
H A DsljitLir.h364 #define SLJIT_ARGS4(ret, arg1, arg2, arg3, arg4) \ argument
365 (SLJIT_ARGS3(ret, arg1, arg2, arg3) | SLJIT_ARG_VALUE(SLJIT_ARG_TO_TYPE(arg4), 4))
/PHP-8.2/ext/opcache/jit/ir/
H A Dir.c2077 …_CALL_4(ir_ctx *ctx, ir_type type, ir_ref func, ir_ref arg1, ir_ref arg2, ir_ref arg3, ir_ref arg4) in _ir_CALL_4() argument
2088 ir_set_op(ctx, call, 6, arg4); in _ir_CALL_4()
2093 …x *ctx, ir_type type, ir_ref func, ir_ref arg1, ir_ref arg2, ir_ref arg3, ir_ref arg4, ir_ref arg5) in _ir_CALL_5() argument
2104 ir_set_op(ctx, call, 6, arg4); in _ir_CALL_5()
2193 …LCALL_4(ir_ctx *ctx, ir_type type, ir_ref func, ir_ref arg1, ir_ref arg2, ir_ref arg3, ir_ref arg4) in _ir_TAILCALL_4() argument
2208 ir_set_op(ctx, call, 6, arg4); in _ir_TAILCALL_4()
2213 …x *ctx, ir_type type, ir_ref func, ir_ref arg1, ir_ref arg2, ir_ref arg3, ir_ref arg4, ir_ref arg5) in _ir_TAILCALL_5() argument
2228 ir_set_op(ctx, call, 6, arg4); in _ir_TAILCALL_5()
H A Dir_builder.h631 …CALL_4(ir_ctx *ctx, ir_type type, ir_ref func, ir_ref arg1, ir_ref arg2, ir_ref arg3, ir_ref arg4);
632 … *ctx, ir_type type, ir_ref func, ir_ref arg1, ir_ref arg2, ir_ref arg3, ir_ref arg4, ir_ref arg5);
638 …CALL_4(ir_ctx *ctx, ir_type type, ir_ref func, ir_ref arg1, ir_ref arg2, ir_ref arg3, ir_ref arg4);
639 … *ctx, ir_type type, ir_ref func, ir_ref arg1, ir_ref arg2, ir_ref arg3, ir_ref arg4, ir_ref arg5);
/PHP-8.2/ext/sqlite3/
H A Dsqlite3.c37 …void *autharg, int action, const char *arg1, const char *arg2, const char *arg3, const char *arg4);
2075 …(void *autharg, int action, const char *arg1, const char *arg2, const char *arg3, const char *arg4) in php_sqlite3_authorizer() argument
2125 if (NULL == arg4) { in php_sqlite3_authorizer()
2128 ZVAL_STRING(&argv[4], arg4); in php_sqlite3_authorizer()
/PHP-8.2/ext/pdo_sqlite/
H A Dsqlite_driver.c769 static int authorizer(void *autharg, int access_type, const char *arg3, const char *arg4, in authorizer() argument
/PHP-8.2/ext/opcache/jit/
H A Dzend_jit_ir.c12891 ir_ref arg2, arg4; local
12910 arg4 = IR_NULL;
12912 arg4 = jit_ZVAL_ADDR(jit, res_addr);
12918 arg4);

Completed in 102 milliseconds