Home
last modified time | relevance | path

Searched refs:CO_OPTIMIZED (Results 1 – 12 of 12) 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.c755 if ((code->co_flags & (CO_NEWLOCALS | CO_OPTIMIZED)) == in PyFrame_New()
756 (CO_NEWLOCALS | CO_OPTIMIZED)) in PyFrame_New()
946 if (co->co_flags & CO_OPTIMIZED) { in PyFrame_FastToLocals()
986 if (co->co_flags & CO_OPTIMIZED) { in PyFrame_LocalsToFast()
/external/python/cpython3/Include/cpython/
Dcode.h67 #define CO_OPTIMIZED 0x0001 macro
/external/python/cpython3/Objects/
Dframeobject.c897 if ((code->co_flags & (CO_NEWLOCALS | CO_OPTIMIZED)) == in _PyFrame_New_NoTrack()
898 (CO_NEWLOCALS | CO_OPTIMIZED)) in _PyFrame_New_NoTrack()
1114 if (co->co_flags & CO_OPTIMIZED) { in PyFrame_FastToLocalsWithError()
1167 if (co->co_flags & CO_OPTIMIZED) { in PyFrame_LocalsToFast()
Dcall.c363 (co->co_flags & ~PyCF_MASK) == (CO_OPTIMIZED | CO_NEWLOCALS | CO_NOFREE)) in _PyFunction_Vectorcall()
/external/python/cpython2/Lib/
Dinspect.py45 CO_OPTIMIZED, CO_NEWLOCALS, CO_VARARGS, CO_VARKEYWORDS = 0x1, 0x2, 0x4, 0x8 variable
/external/python/cpython3/Doc/library/
Dinspect.rst1346 .. data:: CO_OPTIMIZED
/external/python/cpython2/Python/
Dcompile.c3775 flags |= CO_OPTIMIZED; in compute_code_flags()
Dceval.c4432 co->co_flags == (CO_OPTIMIZED | CO_NEWLOCALS | CO_NOFREE)) { in fast_function()
/external/python/cpython3/Python/
Dcompile.c5839 flags |= CO_NEWLOCALS | CO_OPTIMIZED; in compute_code_flags()