Home
last modified time | relevance | path

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

/PHP-7.4/ext/com_dotnet/
H A Dcom_com.c506 if (nargs) { in php_com_do_invoke_byref()
511 for (i = 0; i < nargs; i++) { in php_com_do_invoke_byref()
520 for (j = 0, i = 0; i < nargs; i++) { in php_com_do_invoke_byref()
544 for (i = 0; i < nargs; i++) { in php_com_do_invoke_byref()
549 disp_params.cArgs = nargs; in php_com_do_invoke_byref()
566 for (i = 0, j = 0; i < nargs; i++) { in php_com_do_invoke_byref()
569 zval *arg = &args[nargs - i - 1]; in php_com_do_invoke_byref()
616 if (nargs) { in php_com_do_invoke_by_id()
621 for (i = 0; i < nargs; i++) { in php_com_do_invoke_by_id()
625 disp_params.cArgs = nargs; in php_com_do_invoke_by_id()
[all …]
H A Dphp_com_dotnet_internal.h107 WORD flags, VARIANT *v, int nargs, zval *args, int silent, int allow_noarg);
109 WORD flags, VARIANT *v, int nargs, zval *args, int allow_noarg);
111 WORD flags, VARIANT *v, int nargs, zval *args);
H A Dcom_handlers.c386 int nargs; in com_call_method() local
394 nargs = ZEND_NUM_ARGS(); in com_call_method()
396 if (nargs) { in com_call_method()
397 args = (zval *)safe_emalloc(sizeof(zval), nargs, 0); in com_call_method()
398 zend_get_parameters_array_ex(nargs, args); in com_call_method()
403 …f(obj, (zend_internal_function*)EX(func), DISPATCH_METHOD|DISPATCH_PROPERTYGET, &v, nargs, args)) { in com_call_method()
/PHP-7.4/ext/xsl/
H A Dphp_xsl.h83 void xsl_ext_function_string_php(xmlXPathParserContextPtr ctxt, int nargs);
84 void xsl_ext_function_object_php(xmlXPathParserContextPtr ctxt, int nargs);
H A Dxsltprocessor.c177 static void xsl_ext_function_php(xmlXPathParserContextPtr ctxt, int nargs, int type) /* {{{ */ in xsl_ext_function_php() argument
218 for (i = nargs - 1; i >= 0; i--) { in xsl_ext_function_php()
227 fci.param_count = nargs - 1; in xsl_ext_function_php()
232 for (i = nargs - 2; i >= 0; i--) { in xsl_ext_function_php()
313 for (i = 0; i < nargs - 1; i++) { in xsl_ext_function_php()
371 for (i = 0; i < nargs - 1; i++) { in xsl_ext_function_php()
379 void xsl_ext_function_string_php(xmlXPathParserContextPtr ctxt, int nargs) /* {{{ */ in xsl_ext_function_string_php() argument
381 xsl_ext_function_php(ctxt, nargs, 1); in xsl_ext_function_string_php()
385 void xsl_ext_function_object_php(xmlXPathParserContextPtr ctxt, int nargs) /* {{{ */ in xsl_ext_function_object_php() argument
387 xsl_ext_function_php(ctxt, nargs, 2); in xsl_ext_function_object_php()
/PHP-7.4/ext/dom/
H A Dxpath.c73 static void dom_xpath_ext_function_php(xmlXPathParserContextPtr ctxt, int nargs, int type) /* {{{ */ in dom_xpath_ext_function_php() argument
104 for (i = nargs - 1; i >= 0; i--) { in dom_xpath_ext_function_php()
111 fci.param_count = nargs - 1; in dom_xpath_ext_function_php()
116 for (i = nargs - 2; i >= 0; i--) { in dom_xpath_ext_function_php()
180 for (i = 0; i < nargs - 1; i++) { in dom_xpath_ext_function_php()
230 for (i = 0; i < nargs - 1; i++) { in dom_xpath_ext_function_php()
238 static void dom_xpath_ext_function_string_php(xmlXPathParserContextPtr ctxt, int nargs) /* {{{ */ in dom_xpath_ext_function_string_php() argument
240 dom_xpath_ext_function_php(ctxt, nargs, 1); in dom_xpath_ext_function_string_php()
244 static void dom_xpath_ext_function_object_php(xmlXPathParserContextPtr ctxt, int nargs) /* {{{ */ in dom_xpath_ext_function_object_php() argument
246 dom_xpath_ext_function_php(ctxt, nargs, 2); in dom_xpath_ext_function_object_php()

Completed in 23 milliseconds