Searched refs:nfreevars (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython2/Objects/ |
D | frameobject.c | 911 int ncells, nfreevars; in PyFrame_FastToLocals() local 934 nfreevars = PyTuple_GET_SIZE(co->co_freevars); in PyFrame_FastToLocals() 935 if (ncells || nfreevars) { in PyFrame_FastToLocals() 947 map_to_dict(co->co_freevars, nfreevars, in PyFrame_FastToLocals() 963 int ncells, nfreevars; in PyFrame_LocalsToFast() local 981 nfreevars = PyTuple_GET_SIZE(co->co_freevars); in PyFrame_LocalsToFast() 982 if (ncells || nfreevars) { in PyFrame_LocalsToFast() 987 dict_to_map(co->co_freevars, nfreevars, in PyFrame_LocalsToFast()
|
/external/python/cpython3/Objects/ |
D | frameobject.c | 1071 Py_ssize_t ncells, nfreevars; in PyFrame_FastToLocalsWithError() local 1100 nfreevars = PyTuple_GET_SIZE(co->co_freevars); in PyFrame_FastToLocalsWithError() 1101 if (ncells || nfreevars) { in PyFrame_FastToLocalsWithError() 1115 if (map_to_dict(co->co_freevars, nfreevars, in PyFrame_FastToLocalsWithError() 1144 Py_ssize_t ncells, nfreevars; in PyFrame_LocalsToFast() local 1162 nfreevars = PyTuple_GET_SIZE(co->co_freevars); in PyFrame_LocalsToFast() 1163 if (ncells || nfreevars) { in PyFrame_LocalsToFast() 1168 dict_to_map(co->co_freevars, nfreevars, in PyFrame_LocalsToFast()
|