Home
last modified time | relevance | path

Searched refs:_PyTuple_ITEMS (Results 1 – 9 of 9) sorted by relevance

/external/python/cpython3/Include/internal/
Dpycore_tupleobject.h13 #define _PyTuple_ITEMS(op) (_PyTuple_CAST(op)->ob_item) macro
/external/python/cpython3/Objects/
Dcall.c230 return func(callable, _PyTuple_ITEMS(tuple), nargs, NULL); in PyVectorcall_Call()
237 _PyTuple_ITEMS(tuple), nargs, in PyVectorcall_Call()
372 stack = _PyTuple_ITEMS(argdefs); in _PyFunction_Vectorcall()
387 d = _PyTuple_ITEMS(argdefs); in _PyFunction_Vectorcall()
398 nkwargs ? _PyTuple_ITEMS(kwnames) : NULL, in _PyFunction_Vectorcall()
485 _PyTuple_ITEMS(args), in _PyObject_Call_Prepend()
537 _PyTuple_ITEMS(args), in _PyObject_CallFunctionVa()
Dcodeobject.c54 PyUnicode_InternInPlace(&_PyTuple_ITEMS(tuple)[i]); in intern_strings()
Drangeobject.c141 return range_from_array(type, _PyTuple_ITEMS(args), PyTuple_GET_SIZE(args)); in range_new()
Ddescrobject.c494 PyObject *res = PyObject_VectorcallDict(bound, _PyTuple_ITEMS(args)+1, in classmethoddescr_call()
/external/python/cpython3/Modules/
D_functoolsmodule.c161 PyObject **pto_args = _PyTuple_ITEMS(pto->args); in partial_vectorcall()
671 Py_XSETREF(_PyTuple_ITEMS(args)[0], result); in functools_reduce()
672 Py_XSETREF(_PyTuple_ITEMS(args)[1], op2); in functools_reduce()
Ditertoolsmodule.c2242 result = _PyTuple_FromArray(_PyTuple_ITEMS(old_result), npools); in product_next()
2565 result = _PyTuple_FromArray(_PyTuple_ITEMS(old_result), r); in combinations_next()
2899 result = _PyTuple_FromArray(_PyTuple_ITEMS(old_result), r); in cwr_next()
3243 result = _PyTuple_FromArray(_PyTuple_ITEMS(old_result), r); in permutations_next()
/external/python/cpython3/Python/
Dgetargs.c426 stack = _PyTuple_ITEMS(args); in vgetargs1()
2333 stack = _PyTuple_ITEMS(args); in vgetargskeywordsfast()
2762 stack = _PyTuple_ITEMS(args); in PyArg_UnpackTuple()
Dceval.c5113 &_PyTuple_ITEMS(callargs)[1], in do_call_core()