Home
last modified time | relevance | path

Searched refs:PyCell_GET (Results 1 – 8 of 8) sorted by relevance

/external/python/cpython3/Include/cpython/
Dcellobject.h24 static inline PyObject* PyCell_GET(PyObject *op) { in PyCell_GET() function
30 #define PyCell_GET(op) PyCell_GET(_PyObject_CAST(op)) macro
/external/pytorch/torch/csrc/dynamo/
Dframelocals_mapping.cpp44 value = PyCell_GET(value); in get_framelocals_mapping()
Dcpython_defs.c121 value = PyCell_GET(value); in THP_PyFrame_FastToLocalsWithError()
132 value = PyCell_GET(value); in THP_PyFrame_FastToLocalsWithError()
/external/python/cpython3/Doc/c-api/
Dcell.rst46 .. c:function:: PyObject* PyCell_GET(PyObject *cell)
/external/python/cpython3/Objects/
Dframeobject.c43 value = PyCell_GET(cell); in framelocalsproxy_getval()
188 oldvalue = PyCell_GET(cell); in framelocalsproxy_setitem()
2012 value = PyCell_GET(value); in frame_get_var()
2023 value = PyCell_GET(value); in frame_get_var()
Dtypeobject.c11337 firstarg = PyCell_GET(firstarg); in super_init_without_args()
11360 type = (PyTypeObject *) PyCell_GET(cell); in super_init_without_args()
/external/python/cpython3/Doc/data/
Drefcounts.dat207 PyCell_GET:PyObject*::0:
208 PyCell_GET:PyObject*:ob:0:
/external/python/cpython3/Python/
Dbltinmodule.c212 PyObject *cell_cls = PyCell_GET(cell); in builtin___build_class__()