Searched refs:CO_NEWLOCALS (Results 1 – 13 of 13) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/ |
D | consts.py | 14 CO_NEWLOCALS = 0x0002 variable
|
D | pyassem.py | 9 import CO_OPTIMIZED, CO_NEWLOCALS, CO_VARARGS, CO_VARKEYWORDS 266 self.flags = CO_OPTIMIZED | CO_NEWLOCALS 532 if (self.flags & CO_NEWLOCALS) == 0:
|
D | pycodegen.py | 12 from compiler.consts import (CO_VARARGS, CO_VARKEYWORDS, CO_NEWLOCALS, 1449 self.graph.setFlag(CO_NEWLOCALS)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/ |
D | code.h | 34 #define CO_NEWLOCALS 0x0002 macro
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/ |
D | code.h | 34 #define CO_NEWLOCALS 0x0002 macro
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/ |
D | frameobject.c | 719 if ((code->co_flags & (CO_NEWLOCALS | CO_OPTIMIZED)) == in PyFrame_New() 720 (CO_NEWLOCALS | CO_OPTIMIZED)) in PyFrame_New() 722 else if (code->co_flags & CO_NEWLOCALS) { in PyFrame_New()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/ |
D | frameobject.c | 721 if ((code->co_flags & (CO_NEWLOCALS | CO_OPTIMIZED)) == in PyFrame_New() 722 (CO_NEWLOCALS | CO_OPTIMIZED)) in PyFrame_New() 724 else if (code->co_flags & CO_NEWLOCALS) { in PyFrame_New()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | inspect.py | 45 CO_OPTIMIZED, CO_NEWLOCALS, CO_VARARGS, CO_VARKEYWORDS = 0x1, 0x2, 0x4, 0x8 variable
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
D | inspect.py | 45 CO_OPTIMIZED, CO_NEWLOCALS, CO_VARARGS, CO_VARKEYWORDS = 0x1, 0x2, 0x4, 0x8 variable
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/ |
D | ceval.c | 4096 co->co_flags == (CO_OPTIMIZED | CO_NEWLOCALS | CO_NOFREE)) { in fast_function()
|
D | compile.c | 3810 flags |= CO_NEWLOCALS; in compute_code_flags()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/ |
D | ceval.c | 4074 co->co_flags == (CO_OPTIMIZED | CO_NEWLOCALS | CO_NOFREE)) { in fast_function()
|
D | compile.c | 3786 flags |= CO_NEWLOCALS; in compute_code_flags()
|