Searched refs:CO_FAST_FREE (Results 1 - 7 of 7) sorted by relevance
/third_party/python/Tools/scripts/ |
H A D | deepfreeze.py | 45 CO_FAST_FREE = 0x80 variable 55 a[name] |= CO_FAST_FREE 75 elif kind & CO_FAST_FREE:
|
H A D | umarshal.py | 48 CO_FAST_FREE = 0x80 variable 79 return self.get_localsplus_names(CO_FAST_FREE)
|
/third_party/python/Objects/ |
H A D | frameobject.c | 1142 if (kind & CO_FAST_FREE && !(co->co_flags & CO_OPTIMIZED)) { in _PyFrame_FastToLocalsWithError() 1149 if (kind & CO_FAST_FREE) { in _PyFrame_FastToLocalsWithError() 1241 if (kind & CO_FAST_FREE && !(co->co_flags & CO_OPTIMIZED)) { in _PyFrame_LocalsToFast() 1255 if (kind == CO_FAST_FREE) { in _PyFrame_LocalsToFast()
|
H A D | codeobject.c | 189 else if (kind & CO_FAST_FREE) { in get_localsplus_counts() 563 _Py_set_localsplus_info(offset, name, CO_FAST_FREE, in PyCode_NewWithPosOnlyArgs() 1439 return get_localsplus_names(co, CO_FAST_FREE, co->co_nfreevars); in _PyCode_GetFreevars() 1968 freevars = get_localsplus_names(self, CO_FAST_FREE, self->co_nfreevars); in code_replace_impl()
|
H A D | typeobject.c | 5 #include "pycore_code.h" // CO_FAST_FREE 9020 assert((_PyLocals_GetKind(co->co_localspluskinds, i) & CO_FAST_FREE) != 0); in super_init_without_args()
|
/third_party/python/Include/internal/ |
H A D | pycore_code.h | 145 #define CO_FAST_FREE 0x80 macro
|
/third_party/python/Python/ |
H A D | compile.c | 7975 _Py_set_localsplus_info(offset, k, CO_FAST_FREE, names, kinds); in compute_localsplus_info()
|
Completed in 32 milliseconds