Home
last modified time | relevance | path

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

/aosp_15_r20/external/python/cpython2/Include/
Dcode.h68 #define PyCode_GetNumFree(op) (PyTuple_GET_SIZE((op)->co_freevars)) macro
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/include/python3.11/cpython/
Dcode.h143 #define PyCode_GetNumFree(op) ((op)->co_nfreevars) macro
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/include/python3.11/cpython/
Dcode.h143 #define PyCode_GetNumFree(op) ((op)->co_nfreevars) macro
/aosp_15_r20/external/python/cpython3/Include/cpython/
Dcode.h143 #define PyCode_GetNumFree(op) ((op)->co_nfreevars) macro
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/include/python3.11/cpython/
Dcode.h143 #define PyCode_GetNumFree(op) ((op)->co_nfreevars) macro
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/include/python3.11/cpython/
Dcode.h143 #define PyCode_GetNumFree(op) ((op)->co_nfreevars) macro
/aosp_15_r20/external/python/cpython2/Doc/c-api/
Dcode.rst32 .. c:function:: int PyCode_GetNumFree(PyObject *co)
/aosp_15_r20/external/python/cpython3/Doc/c-api/
Dcode.rst32 .. c:function:: int PyCode_GetNumFree(PyCodeObject *co)
/aosp_15_r20/external/python/cpython2/Objects/
Dfuncobject.c248 nfree = PyCode_GetNumFree((PyCodeObject *)value); in func_set_code()
/aosp_15_r20/external/python/cpython3/Python/
Dbltinmodule.c952 if (PyCode_GetNumFree((PyCodeObject *)source) > 0) { in builtin_eval_impl()
1043 Py_ssize_t num_free = PyCode_GetNumFree((PyCodeObject *)source); in builtin_exec_impl()
/aosp_15_r20/external/python/cpython3/Doc/data/
Drefcounts.dat234 PyCode_GetNumFree:int:::
235 PyCode_GetNumFree:PyCodeObject*:co:0:
/aosp_15_r20/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()