Home
last modified time | relevance | path

Searched refs:co_flags (Results 1 – 21 of 21) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dcodeobject.c85 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()
Dframeobject.c719 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/
Dcodeobject.c85 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()
Dframeobject.c721 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/
Dcode.h15 int co_flags; /* CO_..., see below */ member
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
Dcode.h15 int co_flags; /* CO_..., see below */ member
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dcodeop.py135 if codeob.co_flags & feature.compiler_flag:
Dinspect.py162 object.func_code.co_flags & CO_GENERATOR)
791 if co.co_flags & CO_VARARGS:
795 if co.co_flags & CO_VARKEYWORDS:
Dpdb.py742 if co.co_flags & 4: n = n+1
743 if co.co_flags & 8: n = n+1
Dmodulefinder.py602 co.co_flags, co.co_code, tuple(consts), co.co_names,
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_new.py114 flags = c.co_flags
Dtest_import.py348 code.co_flags, code.co_code, tuple(constants),
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
Dinspect.py162 object.func_code.co_flags & CO_GENERATOR)
794 if co.co_flags & CO_VARARGS:
798 if co.co_flags & CO_VARKEYWORDS:
Dmodulefinder.py604 co.co_flags, co.co_code, tuple(consts), co.co_names,
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Dceval.c3041 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 …]
Dmarshal.c429 w_long(co->co_flags, p); in w_object()
Dpythonrun.c1378 flags->cf_flags |= (co->co_flags & PyCF_MASK); in run_pyc_file()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
Dceval.c3056 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 …]
Dpythonrun.c1403 flags->cf_flags |= (co->co_flags & PyCF_MASK); in run_pyc_file()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Python/
Dmarshal.c429 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/
Dmarshal.c440 w_long(co->co_flags, p); in w_object()