Home
last modified time | relevance | path

Searched refs:PyCode_GetNumFree (Results 1 – 12 of 12) sorted by relevance

/external/python/cpython2/Include/
Dcode.h68 #define PyCode_GetNumFree(op) (PyTuple_GET_SIZE((op)->co_freevars)) macro
/external/python/cpython3/Include/
Dcode.h101 #define PyCode_GetNumFree(op) (PyTuple_GET_SIZE((op)->co_freevars)) macro
/external/python/cpython3/Doc/c-api/
Dcode.rst32 .. c:function:: int PyCode_GetNumFree(PyCodeObject *co)
/external/python/cpython2/Doc/c-api/
Dcode.rst32 .. c:function:: int PyCode_GetNumFree(PyObject *co)
/external/python/cpython2/Objects/
Dfuncobject.c248 nfree = PyCode_GetNumFree((PyCodeObject *)value); in func_set_code()
/external/python/cpython3/Objects/
Dfuncobject.c263 nfree = PyCode_GetNumFree((PyCodeObject *)value); in func_set_code()
/external/python/cpython3/Python/
Dbltinmodule.c993 if (PyCode_GetNumFree((PyCodeObject *)source) > 0) { in builtin_eval_impl()
1073 if (PyCode_GetNumFree((PyCodeObject *)source) > 0) { in builtin_exec_impl()
Dcompile.c1607 Py_ssize_t i, free = PyCode_GetNumFree(co); in compiler_make_closure()
/external/python/cpython3/Doc/data/
Drefcounts.dat234 PyCode_GetNumFree:int:::
235 PyCode_GetNumFree:PyCodeObject*:co:0:
/external/python/cpython2/Python/
Dbltinmodule.c674 if (PyCode_GetNumFree((PyCodeObject *)cmd) > 0) { in builtin_eval()
Dcompile.c1271 int i, free = PyCode_GetNumFree(co); in compiler_make_closure()
Dceval.c5084 if (PyCode_GetNumFree((PyCodeObject *)prog) > 0) { in exec_statement()