Home
last modified time | relevance | path

Searched refs:arg (Results 401 – 425 of 467) sorted by relevance

1...<<111213141516171819

/php-src/sapi/litespeed/
H A Dlsapilib.c2275 LSAPI_CB_EnvHandler fn, void * arg ) in LSAPI_ForeachOrgHeader_r() argument
2342 headers[i]._value, headers[i]._valueLen, arg ); in LSAPI_ForeachOrgHeader_r()
2351 LSAPI_CB_EnvHandler fn, void * arg ) in LSAPI_ForeachHeader_r() argument
2368 pValue, len, arg ); in LSAPI_ForeachHeader_r()
2408 pValue, pCur->valueLen, arg ); in LSAPI_ForeachHeader_r()
2419 int n, LSAPI_CB_EnvHandler fn, void * arg ) in EnvForeach() argument
2428 pEnv->pValue, pEnv->valLen, arg ); in EnvForeach()
2438 LSAPI_CB_EnvHandler fn, void * arg ) in LSAPI_ForeachEnv_r() argument
2445 fn, arg ); in LSAPI_ForeachEnv_r()
2452 LSAPI_CB_EnvHandler fn, void * arg ) in LSAPI_ForeachSpecialEnv_r() argument
[all …]
/php-src/main/
H A Doutput.c665 PHPAPI zend_result php_output_handler_hook(php_output_handler_hook_t type, void *arg) in php_output_handler_hook() argument
670 *(void ***) arg = &OG(running)->opaq; in php_output_handler_hook()
673 *(int *) arg = OG(running)->flags; in php_output_handler_hook()
676 *(int *) arg = OG(running)->level; in php_output_handler_hook()
/php-src/ext/libxml/
H A Dlibxml.c1045 zval *arg; in PHP_FUNCTION() local
1048 Z_PARAM_RESOURCE(arg) in PHP_FUNCTION()
1051 if (php_stream_context_from_zval(arg, true) != NULL) { in PHP_FUNCTION()
1055 ZVAL_COPY(&LIBXML(stream_context), arg); in PHP_FUNCTION()
/php-src/ext/pcre/pcre2lib/sljit/
H A DsljitNativePPC_common.c776 sljit_s32 arg, sljit_sw argw, sljit_s32 tmp_reg);
1188 sljit_s32 arg, sljit_sw argw, sljit_s32 tmp_reg) in emit_op_mem() argument
1195 SLJIT_ASSERT(arg & SLJIT_MEM); in emit_op_mem()
1197 if (SLJIT_UNLIKELY(arg & OFFS_REG_MASK)) { in emit_op_mem()
1199 offs_reg = OFFS_REG(arg); in emit_op_mem()
1202 FAIL_IF(push_inst(compiler, SLWI_W(argw) | S(OFFS_REG(arg)) | A(tmp_reg))); in emit_op_mem()
1216 arg &= REG_MASK; in emit_op_mem()
1223 return push_inst(compiler, INST_CODE_AND_DST(inst, inp_flags, reg) | A(arg) | B(tmp_reg)); in emit_op_mem()
1228 return push_inst(compiler, INST_CODE_AND_DST(inst, inp_flags, reg) | A(arg) | IMM(argw)); in emit_op_mem()
1233 FAIL_IF(push_inst(compiler, ADDIS | D(tmp_reg) | A(arg) | IMM((argw + 0x8000) >> 16))); in emit_op_mem()
[all …]
/php-src/ext/standard/tests/file/
H A Dtempnam_variation2-win32.phpt10 /* Creating unique files in various dirs by passing relative paths to $dir arg */
H A Dtempnam_variation2.phpt10 /* Creating unique files in various dirs by passing relative paths to $dir arg */
/php-src/Zend/asm/
H A Djump_x86_64_ms_pe_masm.asm199 ; transport_t as 1.arg of context-function
/php-src/ext/standard/tests/class_object/
H A Dmethod_exists_variation_001.phpt2 Test method_exists() function : usage variations - unexpected type for arg 1
/php-src/Zend/
H A DZend.m4169 int stack_grows_downwards(uintptr_t arg) {
171 return (uintptr_t)&local < arg;
H A Dzend_virtual_cwd.c1456 va_list arg; in virtual_open() local
1458 va_start(arg, flags); in virtual_open()
1459 mode = (mode_t) va_arg(arg, int); in virtual_open()
1460 va_end(arg); in virtual_open()
H A Dzend_execute.h93 ZEND_API bool zend_verify_scalar_type_hint(uint32_t type_mask, zval *arg, bool strict, bool is_inte…
102 zend_type *type, zval *arg, zend_reference *ref, void **cache_slot, bool is_return_type);
H A Dzend_compile.c3683 zend_ast *arg = args->child[i]; in zend_compile_args() local
3691 if (arg->kind == ZEND_AST_UNPACK) { in zend_compile_args()
3716 arg = arg->child[1]; in zend_compile_args()
3752 if (zend_is_call(arg) || is_globals_fetch(arg)) { in zend_compile_args()
3777 } else if (zend_is_variable(arg) && !zend_ast_is_short_circuited(arg)) { in zend_compile_args()
3788 if (arg->kind == ZEND_AST_VAR) { in zend_compile_args()
3790 if (is_this_fetch(arg)) { in zend_compile_args()
3989 zend_ast *arg = args->child[i]; in zend_args_contain_unpack_or_named() local
3990 if (arg->kind == ZEND_AST_UNPACK || arg->kind == ZEND_AST_NAMED_ARG) { in zend_args_contain_unpack_or_named()
4326 arg = zend_ast_create(ZEND_AST_NAMED_ARG, name, arg); in zend_compile_assert()
[all …]
/php-src/ext/reflection/tests/
H A DReflectionMethod_basic1.phpt52 public function __construct($arg);
/php-src/ext/pcre/
H A Dphp_pcre.c509 static int pcre_clean_cache(zval *data, void *arg) in pcre_clean_cache() argument
512 int *num_clean = (int *)arg; in pcre_clean_cache()
1542 zval arg; /* Argument to pass to function */ in preg_do_repl_func() local
1544 array_init_size(&arg, count + (mark ? 1 : 0)); in preg_do_repl_func()
1545 populate_subpat_array(&arg, subject, offsets, subpat_names, num_subpats, count, mark, flags); in preg_do_repl_func()
1549 fci->params = &arg; in preg_do_repl_func()
1566 zval_ptr_dtor(&arg); in preg_do_repl_func()
/php-src/ext/standard/
H A Dbrowscap.c305 static void php_browscap_parser_cb(zval *arg1, zval *arg2, zval *arg3, int callback_type, void *arg in php_browscap_parser_cb() argument
307 browscap_parser_ctx *ctx = arg; in php_browscap_parser_cb()
/php-src/build/
H A Dphp_cxx_compile_stdcxx.m49 dnl first arg - version as 11, 14, 17 or 20
10 dnl second arg - if mandatory, the configure will fail when no features found.
12 dnl third arg - a variable name where the corresponding switch would be put. If
/php-src/ext/opcache/jit/
H A Dzend_jit_helpers.c1825 static bool ZEND_FASTCALL zend_jit_verify_arg_slow(zval *arg, zend_arg_info *arg_info) in zend_jit_verify_arg_slow() argument
1831 &arg_info->type, arg, /* ref */ NULL, cache_slot, /* is_return_type */ false); in zend_jit_verify_arg_slow()
1833 zend_verify_arg_error(EX(func), arg_info, opline->op1.num, arg); in zend_jit_verify_arg_slow()
1839 static void ZEND_FASTCALL zend_jit_verify_return_slow(zval *arg, const zend_op_array *op_array, zen… in zend_jit_verify_return_slow() argument
1842 &arg_info->type, arg, /* ref */ NULL, cache_slot, /* is_return_type */ true))) { in zend_jit_verify_return_slow()
1843 zend_verify_return_error((zend_function*)op_array, arg); in zend_jit_verify_return_slow()
2502 static void ZEND_FASTCALL zend_jit_only_vars_by_reference(zval *arg) in zend_jit_only_vars_by_reference() argument
2504 ZVAL_NEW_REF(arg, arg); in zend_jit_only_vars_by_reference()
/php-src/ext/ctype/tests/
H A Dctype_alnum_variation1.phpt2 Test ctype_alnum() function : usage variations - Different data types as $c arg
H A Dctype_alpha_variation1.phpt2 Test ctype_alpha() function : usage variations - different data types as $c arg
H A Dctype_cntrl_variation1.phpt2 Test ctype_cntrl() function : usage variations - Different data types as $c arg
H A Dctype_digit_variation1.phpt2 Test ctype_digit() function : usage variations - different data types as $c arg
H A Dctype_graph_variation1.phpt2 Test ctype_graph() function : usage variations - different data types as $c arg
H A Dctype_lower_variation1.phpt2 Test ctype_lower() function : usage variations - different data types as $c arg
H A Dctype_print_variation1.phpt2 Test ctype_print() function : usage variations - different data types as $c arg
H A Dctype_xdigit_variation1.phpt2 Test ctype_xdigit() function : usage variations - different data typse as $c arg

Completed in 138 milliseconds

1...<<111213141516171819