Home
last modified time | relevance | path

Searched refs:CO_OPTIMIZED (Results 1 – 7 of 7) sorted by relevance

/external/python/cpython2/Lib/compiler/
Dconsts.py13 CO_OPTIMIZED = 0x0001 variable
Dpyassem.py9 import CO_OPTIMIZED, CO_NEWLOCALS, CO_VARARGS, CO_VARKEYWORDS
266 self.flags = CO_OPTIMIZED | CO_NEWLOCALS
/external/python/cpython2/Include/
Dcode.h33 #define CO_OPTIMIZED 0x0001 macro
/external/python/cpython2/Objects/
Dframeobject.c719 if ((code->co_flags & (CO_NEWLOCALS | CO_OPTIMIZED)) == in PyFrame_New()
720 (CO_NEWLOCALS | CO_OPTIMIZED)) in PyFrame_New()
910 if (co->co_flags & CO_OPTIMIZED) { in PyFrame_FastToLocals()
950 if (co->co_flags & CO_OPTIMIZED) { in PyFrame_LocalsToFast()
/external/python/cpython2/Lib/
Dinspect.py45 CO_OPTIMIZED, CO_NEWLOCALS, CO_VARARGS, CO_VARKEYWORDS = 0x1, 0x2, 0x4, 0x8 variable
/external/python/cpython2/Python/
Dceval.c4412 co->co_flags == (CO_OPTIMIZED | CO_NEWLOCALS | CO_NOFREE)) { in fast_function()
Dcompile.c3774 flags |= CO_OPTIMIZED; in compute_code_flags()