Home
last modified time | relevance | path

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

/PHP-7.3/ext/com_dotnet/
H A Dcom_com.c499 if (nargs) { in php_com_do_invoke_byref()
504 for (i = 0; i < nargs; i++) { in php_com_do_invoke_byref()
513 for (j = 0, i = 0; i < nargs; i++) { in php_com_do_invoke_byref()
537 for (i = 0; i < nargs; i++) { in php_com_do_invoke_byref()
542 disp_params.cArgs = nargs; in php_com_do_invoke_byref()
559 for (i = 0, j = 0; i < nargs; i++) { in php_com_do_invoke_byref()
562 zval *arg = &args[nargs - i - 1]; in php_com_do_invoke_byref()
609 if (nargs) { in php_com_do_invoke_by_id()
614 for (i = 0; i < nargs; i++) { in php_com_do_invoke_by_id()
618 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.c366 int nargs; in com_call_method() local
374 nargs = ZEND_NUM_ARGS(); in com_call_method()
376 if (nargs) { in com_call_method()
377 args = (zval *)safe_emalloc(sizeof(zval), nargs, 0); in com_call_method()
378 zend_get_parameters_array_ex(nargs, args); in com_call_method()
383 …f(obj, (zend_internal_function*)EX(func), DISPATCH_METHOD|DISPATCH_PROPERTYGET, &v, nargs, args)) { in com_call_method()
/PHP-7.3/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()
/PHP-7.3/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.c174 static void xsl_ext_function_php(xmlXPathParserContextPtr ctxt, int nargs, int type) /* {{{ */ in xsl_ext_function_php() argument
215 for (i = nargs - 1; i >= 0; i--) { in xsl_ext_function_php()
224 fci.param_count = nargs - 1; in xsl_ext_function_php()
229 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()
368 for (i = 0; i < nargs - 1; i++) { in xsl_ext_function_php()
376 void xsl_ext_function_string_php(xmlXPathParserContextPtr ctxt, int nargs) /* {{{ */ in xsl_ext_function_string_php() argument
378 xsl_ext_function_php(ctxt, nargs, 1); in xsl_ext_function_string_php()
382 void xsl_ext_function_object_php(xmlXPathParserContextPtr ctxt, int nargs) /* {{{ */ in xsl_ext_function_object_php() argument
384 xsl_ext_function_php(ctxt, nargs, 2); in xsl_ext_function_object_php()

Completed in 22 milliseconds