Searched refs:CO_FAST_CELL (Results 1 - 7 of 7) sorted by relevance
/third_party/python/Tools/scripts/ |
H A D | deepfreeze.py | 44 CO_FAST_CELL = 0x40 variable 53 a[name] |= CO_FAST_CELL 70 if kind & CO_FAST_CELL: 72 elif kind & CO_FAST_CELL:
|
H A D | umarshal.py | 47 CO_FAST_CELL = 0x40 variable 75 return self.get_localsplus_names(CO_FAST_CELL)
|
/third_party/python/Objects/ |
H A D | codeobject.c | 181 if (kind & CO_FAST_CELL) { in get_localsplus_counts() 185 else if (kind & CO_FAST_CELL) { in get_localsplus_counts() 555 _PyLocals_SetKind(localspluskinds, argoffset, kind | CO_FAST_CELL); in PyCode_NewWithPosOnlyArgs() 558 _Py_set_localsplus_info(offset, name, CO_FAST_CELL, in PyCode_NewWithPosOnlyArgs() 1427 return get_localsplus_names(co, CO_FAST_CELL, co->co_ncellvars); in _PyCode_GetCellvars() 1961 cellvars = get_localsplus_names(self, CO_FAST_CELL, self->co_ncellvars); in code_replace_impl()
|
H A D | frameobject.c | 1154 else if (kind & CO_FAST_CELL) { in _PyFrame_FastToLocalsWithError() 1261 else if (kind & CO_FAST_CELL && oldvalue != NULL) { in _PyFrame_LocalsToFast()
|
H A D | typeobject.c | 8998 if (firstarg != NULL && (_PyLocals_GetKind(co->co_localspluskinds, 0) & CO_FAST_CELL)) { in super_init_without_args()
|
/third_party/python/Include/internal/ |
H A D | pycore_code.h | 144 #define CO_FAST_CELL 0x40 macro
|
/third_party/python/Python/ |
H A D | compile.c | 7947 kind |= CO_FAST_CELL; in compute_localsplus_info() 7966 _Py_set_localsplus_info(offset, k, CO_FAST_CELL, names, kinds); in compute_localsplus_info()
|
Completed in 29 milliseconds