/PHP-8.2/sapi/fuzzer/ |
H A D | fuzzer-sapi.c | 293 void fuzzer_call_php_func_zval(const char *func_name, int nargs, zval *args) { in fuzzer_call_php_func_zval() argument 298 call_user_function(CG(function_table), NULL, &func, &retval, nargs, args); in fuzzer_call_php_func_zval() 310 void fuzzer_call_php_func(const char *func_name, int nargs, char **params) { in fuzzer_call_php_func() argument 311 zval args[nargs]; in fuzzer_call_php_func() 314 for(i=0;i<nargs;i++) { in fuzzer_call_php_func() 318 fuzzer_call_php_func_zval(func_name, nargs, args); in fuzzer_call_php_func() 320 for(i=0;i<nargs;i++) { in fuzzer_call_php_func()
|
H A D | fuzzer-sapi.h | 22 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.2/ext/com_dotnet/ |
H A D | com_com.c | 484 if (nargs) { in php_com_do_invoke_byref() 489 for (i = 0; i < nargs; i++) { in php_com_do_invoke_byref() 498 for (j = 0, i = 0; i < nargs; i++) { in php_com_do_invoke_byref() 522 for (i = 0; i < nargs; i++) { in php_com_do_invoke_byref() 527 disp_params.cArgs = nargs; in php_com_do_invoke_byref() 544 for (i = 0, j = 0; i < nargs; i++) { in php_com_do_invoke_byref() 547 zval *arg = &args[nargs - i - 1]; in php_com_do_invoke_byref() 594 if (nargs) { in php_com_do_invoke_by_id() 599 for (i = 0; i < nargs; i++) { in php_com_do_invoke_by_id() 603 disp_params.cArgs = nargs; in php_com_do_invoke_by_id() [all …]
|
H A D | php_com_dotnet_internal.h | 98 WORD flags, VARIANT *v, int nargs, zval *args, bool silent, bool allow_noarg); 100 WORD flags, VARIANT *v, int nargs, zval *args, bool allow_noarg); 102 WORD flags, VARIANT *v, int nargs, zval *args);
|
H A D | com_handlers.c | 255 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.2/ext/xsl/ |
H A D | php_xsl.h | 80 void xsl_ext_function_string_php(xmlXPathParserContextPtr ctxt, int nargs); 81 void xsl_ext_function_object_php(xmlXPathParserContextPtr ctxt, int nargs);
|
H A D | xsltprocessor.c | 94 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() 287 for (i = 0; i < nargs - 1; i++) { in xsl_ext_function_php() 295 void xsl_ext_function_string_php(xmlXPathParserContextPtr ctxt, int nargs) /* {{{ */ in xsl_ext_function_string_php() argument 297 xsl_ext_function_php(ctxt, nargs, 1); in xsl_ext_function_string_php() 301 void xsl_ext_function_object_php(xmlXPathParserContextPtr ctxt, int nargs) /* {{{ */ in xsl_ext_function_object_php() argument 303 xsl_ext_function_php(ctxt, nargs, 2); in xsl_ext_function_object_php()
|
/PHP-8.2/ext/dom/ |
H A D | xpath.c | 35 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() 191 for (i = 0; i < nargs - 1; i++) { in dom_xpath_ext_function_php() 199 static void dom_xpath_ext_function_string_php(xmlXPathParserContextPtr ctxt, int nargs) /* {{{ */ in dom_xpath_ext_function_string_php() argument 201 dom_xpath_ext_function_php(ctxt, nargs, 1); in dom_xpath_ext_function_string_php() 205 static void dom_xpath_ext_function_object_php(xmlXPathParserContextPtr ctxt, int nargs) /* {{{ */ in dom_xpath_ext_function_object_php() argument 207 dom_xpath_ext_function_php(ctxt, nargs, 2); in dom_xpath_ext_function_object_php()
|
/PHP-8.2/ext/opcache/jit/dynasm/ |
H A D | dynasm.lua | 1069 local nargs = #args - args.argn + 1 1070 if nargs ~= 1 then 1071 if nargs == 0 then
|
H A D | minilua.c | 1146 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 …]
|