Home
last modified time | relevance | path

Searched refs:nargs (Results 1 – 10 of 10) sorted by relevance

/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()
293 void fuzzer_call_php_func(const char *func_name, int nargs, char **params) { in fuzzer_call_php_func() argument
294 zval args[nargs]; in fuzzer_call_php_func()
297 for(i=0;i<nargs;i++) { in fuzzer_call_php_func()
301 fuzzer_call_php_func_zval(func_name, nargs, args); in fuzzer_call_php_func()
303 for(i=0;i<nargs;i++) { in fuzzer_call_php_func()
H A Dfuzzer-sapi.h22 void fuzzer_call_php_func(const char *func_name, int nargs, char **params);
23 void fuzzer_call_php_func_zval(const char *func_name, int nargs, zval *args);
/PHP-8.1/ext/com_dotnet/
H A Dcom_com.c488 if (nargs) { in php_com_do_invoke_byref()
493 for (i = 0; i < nargs; i++) { in php_com_do_invoke_byref()
502 for (j = 0, i = 0; i < nargs; i++) { in php_com_do_invoke_byref()
526 for (i = 0; i < nargs; i++) { in php_com_do_invoke_byref()
531 disp_params.cArgs = nargs; in php_com_do_invoke_byref()
548 for (i = 0, j = 0; i < nargs; i++) { in php_com_do_invoke_byref()
551 zval *arg = &args[nargs - i - 1]; in php_com_do_invoke_byref()
598 if (nargs) { in php_com_do_invoke_by_id()
603 for (i = 0; i < nargs; i++) { in php_com_do_invoke_by_id()
607 disp_params.cArgs = nargs; in php_com_do_invoke_by_id()
[all …]
H A Dphp_com_dotnet_internal.h99 WORD flags, VARIANT *v, int nargs, zval *args, int silent, int allow_noarg);
101 WORD flags, VARIANT *v, int nargs, zval *args, int allow_noarg);
103 WORD flags, VARIANT *v, int nargs, zval *args);
H A Dcom_handlers.c255 int nargs; in PHP_FUNCTION() local
263 nargs = ZEND_NUM_ARGS(); in PHP_FUNCTION()
265 if (nargs) { in PHP_FUNCTION()
266 args = (zval *)safe_emalloc(sizeof(zval), nargs, 0); in PHP_FUNCTION()
267 zend_get_parameters_array_ex(nargs, args); in PHP_FUNCTION()
272 …f(obj, (zend_internal_function*)EX(func), DISPATCH_METHOD|DISPATCH_PROPERTYGET, &v, nargs, args)) { in PHP_FUNCTION()
/PHP-8.1/ext/xsl/
H A Dphp_xsl.h80 void xsl_ext_function_string_php(xmlXPathParserContextPtr ctxt, int nargs);
81 void xsl_ext_function_object_php(xmlXPathParserContextPtr ctxt, int nargs);
H A Dxsltprocessor.c94 static void xsl_ext_function_php(xmlXPathParserContextPtr ctxt, int nargs, int type) /* {{{ */ in xsl_ext_function_php() argument
135 for (i = nargs - 1; i >= 0; i--) { in xsl_ext_function_php()
144 if (UNEXPECTED(nargs == 0)) { in xsl_ext_function_php()
149 fci.param_count = nargs - 1; in xsl_ext_function_php()
236 for (i = 0; i < nargs - 1; i++) { in xsl_ext_function_php()
294 for (i = 0; i < nargs - 1; i++) { in xsl_ext_function_php()
302 void xsl_ext_function_string_php(xmlXPathParserContextPtr ctxt, int nargs) /* {{{ */ in xsl_ext_function_string_php() argument
304 xsl_ext_function_php(ctxt, nargs, 1); in xsl_ext_function_string_php()
308 void xsl_ext_function_object_php(xmlXPathParserContextPtr ctxt, int nargs) /* {{{ */ in xsl_ext_function_object_php() argument
310 xsl_ext_function_php(ctxt, nargs, 2); in xsl_ext_function_object_php()
/PHP-8.1/ext/dom/
H A Dxpath.c35 static void dom_xpath_ext_function_php(xmlXPathParserContextPtr ctxt, int nargs, int type) /* {{{ */ in dom_xpath_ext_function_php() argument
66 for (i = nargs - 1; i >= 0; i--) { in dom_xpath_ext_function_php()
73 if (UNEXPECTED(nargs == 0)) { in dom_xpath_ext_function_php()
78 fci.param_count = nargs - 1; in dom_xpath_ext_function_php()
188 for (i = 0; i < nargs - 1; i++) { in dom_xpath_ext_function_php()
196 static void dom_xpath_ext_function_string_php(xmlXPathParserContextPtr ctxt, int nargs) /* {{{ */ in dom_xpath_ext_function_string_php() argument
198 dom_xpath_ext_function_php(ctxt, nargs, 1); in dom_xpath_ext_function_string_php()
202 static void dom_xpath_ext_function_object_php(xmlXPathParserContextPtr ctxt, int nargs) /* {{{ */ in dom_xpath_ext_function_object_php() argument
204 dom_xpath_ext_function_php(ctxt, nargs, 2); in dom_xpath_ext_function_object_php()
/PHP-8.1/ext/opcache/jit/dynasm/
H A Ddynasm.lua1069 local nargs = #args - args.argn + 1
1070 if nargs ~= 1 then
1071 if nargs == 0 then
H A Dminilua.c1146 base=adjust_varargs(L,p,nargs);
5755 api_checknelems(L,nargs+1);
5756 checkresults(L,nargs,nresults);
5757 func=L->top-(nargs+1);
5773 api_checknelems(L,nargs+1);
5774 checkresults(L,nargs,nresults);
5782 c.func=L->top-(nargs+1);
6814 int nargs=lua_gettop(L)-1;
6818 if(nargs==0){
6883 int nargs=lua_gettop(L)-1;
[all …]

Completed in 37 milliseconds