/external/python/cpython3/Python/ |
D | legacy_tracing.c | 61 assert(PyVectorcall_NARGS(nargsf) == 2); in sys_profile_start() 71 assert(PyVectorcall_NARGS(nargsf) == 3); in sys_profile_throw() 81 assert(PyVectorcall_NARGS(nargsf) == 3); in sys_profile_return() 91 assert(PyVectorcall_NARGS(nargsf) == 3); in sys_profile_unwind() 101 assert(PyVectorcall_NARGS(nargsf) == 4); in sys_profile_call_or_return() 204 assert(PyVectorcall_NARGS(nargsf) == 3); in sys_trace_exception_func() 228 assert(PyVectorcall_NARGS(nargsf) == 2); in sys_trace_start() 238 assert(PyVectorcall_NARGS(nargsf) == 3); in sys_trace_throw() 248 assert(PyVectorcall_NARGS(nargsf) == 3); in sys_trace_unwind() 259 assert(PyVectorcall_NARGS(nargsf) == 3); in sys_trace_return() [all …]
|
D | bltinmodule.c | 533 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in filter_vectorcall() 1362 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in map_vectorcall()
|
/external/python/cpython3/Objects/ |
D | methodobject.c | 419 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in cfunction_vectorcall_FASTCALL() 435 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in cfunction_vectorcall_FASTCALL_KEYWORDS() 452 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in cfunction_vectorcall_FASTCALL_KEYWORDS_METHOD() 470 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in cfunction_vectorcall_NOARGS() 498 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in cfunction_vectorcall_O()
|
D | call.c | 122 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in _PyObject_VectorcallDictTstate() 407 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in _PyFunction_Vectorcall() 834 assert(PyVectorcall_NARGS(nargsf) >= 1); in PyObject_VectorcallMethod() 1047 #undef PyVectorcall_NARGS 1049 PyVectorcall_NARGS(size_t n) in PyVectorcall_NARGS() function
|
D | boolobject.c | 53 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in bool_vectorcall()
|
D | descrobject.c | 311 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in method_vectorcall_VARARGS() 336 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in method_vectorcall_VARARGS_KEYWORDS() 372 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in method_vectorcall_FASTCALL_KEYWORDS_METHOD() 392 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in method_vectorcall_FASTCALL() 411 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in method_vectorcall_FASTCALL_KEYWORDS() 430 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in method_vectorcall_NOARGS() 457 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in method_vectorcall_O()
|
D | enumobject.c | 105 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in enumerate_vectorcall() 405 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in reversed_vectorcall()
|
D | classobject.c | 51 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in method_vectorcall()
|
D | weakrefobject.c | 174 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in weakref_vectorcall()
|
D | tupleobject.c | 707 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in tuple_vectorcall()
|
D | rangeobject.c | 149 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in range_vectorcall()
|
D | setobject.c | 1140 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in frozenset_vectorcall() 2348 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in set_vectorcall()
|
D | floatobject.c | 1693 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in float_vectorcall()
|
D | listobject.c | 3466 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in list_vectorcall()
|
/external/python/cpython3/Include/internal/ |
D | pycore_call.h | 161 assert(args != NULL || PyVectorcall_NARGS(nargsf) == 0); in _PyObject_VectorcallTstate() 165 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in _PyObject_VectorcallTstate()
|
/external/python/cpython3/Include/cpython/ |
D | abstract.h | 37 #define PyVectorcall_NARGS(n) _PyVectorcall_NARGS(n) macro
|
/external/pytorch/torch/csrc/utils/ |
D | pythoncapi_compat.h | 631 PyVectorcall_NARGS(size_t n) in PyVectorcall_NARGS() function 661 nposargs = (Py_ssize_t)PyVectorcall_NARGS(nargsf); in PyObject_Vectorcall()
|
/external/python/cpython3/Modules/ |
D | _operator.c | 905 &args[1], (PyVectorcall_NARGS(nargs) - 1) | PY_VECTORCALL_ARGUMENTS_OFFSET, in _operator_call() 1090 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in itemgetter_vectorcall() 1401 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in attrgetter_vectorcall() 1621 if (!_PyArg_CheckPositional("methodcaller", PyVectorcall_NARGS(nargsf), 1, 1) in methodcaller_vectorcall()
|
D | _functoolsmodule.c | 225 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in partial_vectorcall_fallback() 241 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in partial_vectorcall()
|
/external/python/cpython3/Doc/c-api/ |
D | call.rst | 89 use :c:func:`PyVectorcall_NARGS`. 134 .. c:function:: Py_ssize_t PyVectorcall_NARGS(size_t nargsf) 142 However, the function ``PyVectorcall_NARGS`` should be used to allow
|
/external/python/cpython3/Include/ |
D | abstract.h | 269 PyAPI_FUNC(Py_ssize_t) PyVectorcall_NARGS(size_t nargsf);
|
/external/python/cpython3/Modules/_sqlite/ |
D | module.c | 66 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in pysqlite_connect()
|
/external/python/cpython3/PC/ |
D | python3dll.c | 769 EXPORT_FUNC(PyVectorcall_NARGS)
|
/external/python/cpython3/Doc/data/ |
D | stable_abi.dat | 815 func,PyVectorcall_NARGS,3.12,,
|
/external/python/cpython3/Misc/ |
D | stable_abi.toml | 2355 [function.PyVectorcall_NARGS]
|