Home
last modified time | relevance | path

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

/PHP-7.1/ext/com_dotnet/
H A Dcom_com.c502 if (nargs) { in php_com_do_invoke_byref()
507 for (i = 0; i < nargs; i++) { in php_com_do_invoke_byref()
516 for (j = 0, i = 0; i < nargs; i++) { in php_com_do_invoke_byref()
540 for (i = 0; i < nargs; i++) { in php_com_do_invoke_byref()
545 disp_params.cArgs = nargs; in php_com_do_invoke_byref()
562 for (i = 0, j = 0; i < nargs; i++) { in php_com_do_invoke_byref()
565 zval *arg = &args[nargs - i - 1]; in php_com_do_invoke_byref()
610 if (nargs) { in php_com_do_invoke_by_id()
615 for (i = 0; i < nargs; i++) { in php_com_do_invoke_by_id()
619 disp_params.cArgs = nargs; in php_com_do_invoke_by_id()
[all …]
H A Dphp_com_dotnet_internal.h110 WORD flags, VARIANT *v, int nargs, zval *args, int silent, int allow_noarg);
112 WORD flags, VARIANT *v, int nargs, zval *args, int allow_noarg);
114 WORD flags, VARIANT *v, int nargs, zval *args);
H A Dcom_handlers.c363 int nargs; in com_call_method() local
371 nargs = ZEND_NUM_ARGS(); in com_call_method()
373 if (nargs) { in com_call_method()
374 args = (zval *)safe_emalloc(sizeof(zval), nargs, 0); in com_call_method()
375 zend_get_parameters_array_ex(nargs, args); in com_call_method()
380 …f(obj, (zend_internal_function*)EX(func), DISPATCH_METHOD|DISPATCH_PROPERTYGET, &v, nargs, args)) { in com_call_method()
/PHP-7.1/ext/dom/
H A Dxpath.c75 static void dom_xpath_ext_function_php(xmlXPathParserContextPtr ctxt, int nargs, int type) /* {{{ */ in dom_xpath_ext_function_php() argument
106 for (i = nargs - 1; i >= 0; i--) { in dom_xpath_ext_function_php()
113 fci.param_count = nargs - 1; in dom_xpath_ext_function_php()
118 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()
231 for (i = 0; i < nargs - 1; i++) { in dom_xpath_ext_function_php()
239 static void dom_xpath_ext_function_string_php(xmlXPathParserContextPtr ctxt, int nargs) /* {{{ */ in dom_xpath_ext_function_string_php() argument
241 dom_xpath_ext_function_php(ctxt, nargs, 1); in dom_xpath_ext_function_string_php()
245 static void dom_xpath_ext_function_object_php(xmlXPathParserContextPtr ctxt, int nargs) /* {{{ */ in dom_xpath_ext_function_object_php() argument
247 dom_xpath_ext_function_php(ctxt, nargs, 2); in dom_xpath_ext_function_object_php()
/PHP-7.1/ext/xsl/
H A Dphp_xsl.h85 void xsl_ext_function_string_php(xmlXPathParserContextPtr ctxt, int nargs);
86 void xsl_ext_function_object_php(xmlXPathParserContextPtr ctxt, int nargs);
H A Dxsltprocessor.c176 static void xsl_ext_function_php(xmlXPathParserContextPtr ctxt, int nargs, int type) /* {{{ */ in xsl_ext_function_php() argument
217 for (i = nargs - 1; i >= 0; i--) { in xsl_ext_function_php()
226 fci.param_count = nargs - 1; in xsl_ext_function_php()
231 for (i = nargs - 2; i >= 0; i--) { in xsl_ext_function_php()
310 for (i = 0; i < nargs - 1; i++) { in xsl_ext_function_php()
369 for (i = 0; i < nargs - 1; i++) { in xsl_ext_function_php()
377 void xsl_ext_function_string_php(xmlXPathParserContextPtr ctxt, int nargs) /* {{{ */ in xsl_ext_function_string_php() argument
379 xsl_ext_function_php(ctxt, nargs, 1); in xsl_ext_function_string_php()
383 void xsl_ext_function_object_php(xmlXPathParserContextPtr ctxt, int nargs) /* {{{ */ in xsl_ext_function_object_php() argument
385 xsl_ext_function_php(ctxt, nargs, 2); in xsl_ext_function_object_php()

Completed in 18 milliseconds