/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/ |
D | codeobject.c | 85 co->co_flags = flags; in PyCode_New() 164 {"co_flags", T_INT, OFF(co_flags), READONLY}, 353 cmp = co->co_flags - cp->co_flags; in code_compare() 410 eq = co->co_flags == cp->co_flags; in code_richcompare() 465 co->co_argcount ^ co->co_nlocals ^ co->co_flags; in code_hash()
|
D | frameobject.c | 719 if ((code->co_flags & (CO_NEWLOCALS | CO_OPTIMIZED)) == in PyFrame_New() 722 else if (code->co_flags & CO_NEWLOCALS) { in PyFrame_New() 911 if (co->co_flags & CO_OPTIMIZED) { in PyFrame_FastToLocals() 951 if (co->co_flags & CO_OPTIMIZED) { in PyFrame_LocalsToFast()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/ |
D | codeobject.c | 85 co->co_flags = flags; in PyCode_New() 164 {"co_flags", T_INT, OFF(co_flags), READONLY}, 353 cmp = co->co_flags - cp->co_flags; in code_compare() 410 eq = co->co_flags == cp->co_flags; in code_richcompare() 465 co->co_argcount ^ co->co_nlocals ^ co->co_flags; in code_hash()
|
D | frameobject.c | 721 if ((code->co_flags & (CO_NEWLOCALS | CO_OPTIMIZED)) == in PyFrame_New() 724 else if (code->co_flags & CO_NEWLOCALS) { in PyFrame_New() 913 if (co->co_flags & CO_OPTIMIZED) { in PyFrame_FastToLocals() 953 if (co->co_flags & CO_OPTIMIZED) { in PyFrame_LocalsToFast()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/ |
D | code.h | 15 int co_flags; /* CO_..., see below */ member
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/ |
D | code.h | 15 int co_flags; /* CO_..., see below */ member
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | codeop.py | 135 if codeob.co_flags & feature.compiler_flag:
|
D | inspect.py | 162 object.func_code.co_flags & CO_GENERATOR) 791 if co.co_flags & CO_VARARGS: 795 if co.co_flags & CO_VARKEYWORDS:
|
D | pdb.py | 742 if co.co_flags & 4: n = n+1 743 if co.co_flags & 8: n = n+1
|
D | modulefinder.py | 602 co.co_flags, co.co_code, tuple(consts), co.co_names,
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | test_new.py | 114 flags = c.co_flags
|
D | test_import.py | 348 code.co_flags, code.co_code, tuple(constants),
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
D | inspect.py | 162 object.func_code.co_flags & CO_GENERATOR) 794 if co.co_flags & CO_VARARGS: 798 if co.co_flags & CO_VARKEYWORDS:
|
D | modulefinder.py | 604 co.co_flags, co.co_code, tuple(consts), co.co_names,
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/ |
D | ceval.c | 3041 co->co_flags & (CO_VARARGS | CO_VARKEYWORDS)) { in PyEval_EvalCodeEx() 3045 if (co->co_flags & CO_VARKEYWORDS) { in PyEval_EvalCodeEx() 3050 if (co->co_flags & CO_VARARGS) in PyEval_EvalCodeEx() 3055 if (!(co->co_flags & CO_VARARGS)) { in PyEval_EvalCodeEx() 3073 if (co->co_flags & CO_VARARGS) { in PyEval_EvalCodeEx() 3160 ((co->co_flags & CO_VARARGS) || in PyEval_EvalCodeEx() 3195 if (co->co_flags & CO_VARARGS) in PyEval_EvalCodeEx() 3197 if (co->co_flags & CO_VARKEYWORDS) in PyEval_EvalCodeEx() 3240 if (co->co_flags & CO_GENERATOR) { in PyEval_EvalCodeEx() 3826 const int codeflags = current_frame->f_code->co_flags; in PyEval_MergeCompilerFlags() [all …]
|
D | marshal.c | 429 w_long(co->co_flags, p); in w_object()
|
D | pythonrun.c | 1378 flags->cf_flags |= (co->co_flags & PyCF_MASK); in run_pyc_file()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/ |
D | ceval.c | 3056 co->co_flags & (CO_VARARGS | CO_VARKEYWORDS)) { in PyEval_EvalCodeEx() 3060 if (co->co_flags & CO_VARKEYWORDS) { in PyEval_EvalCodeEx() 3065 if (co->co_flags & CO_VARARGS) in PyEval_EvalCodeEx() 3070 if (!(co->co_flags & CO_VARARGS)) { in PyEval_EvalCodeEx() 3088 if (co->co_flags & CO_VARARGS) { in PyEval_EvalCodeEx() 3175 ((co->co_flags & CO_VARARGS) || in PyEval_EvalCodeEx() 3210 if (co->co_flags & CO_VARARGS) in PyEval_EvalCodeEx() 3212 if (co->co_flags & CO_VARKEYWORDS) in PyEval_EvalCodeEx() 3255 if (co->co_flags & CO_GENERATOR) { in PyEval_EvalCodeEx() 3848 const int codeflags = current_frame->f_code->co_flags; in PyEval_MergeCompilerFlags() [all …]
|
D | pythonrun.c | 1403 flags->cf_flags |= (co->co_flags & PyCF_MASK); in run_pyc_file()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Python/ |
D | marshal.c | 429 w_long(co->co_flags, p); in w_object()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Python/ |
D | marshal.c | 440 w_long(co->co_flags, p); in w_object()
|