Home
last modified time | relevance | path

Searched refs:BUILD_TUPLE (Results 1 – 9 of 9) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
Dopcode.h100 #define BUILD_TUPLE 102 /* Number of tuple items */ macro
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
Dopcode.h100 #define BUILD_TUPLE 102 /* Number of tuple items */ macro
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Dpeephole.c44 assert(codestr[n*3] == BUILD_TUPLE || codestr[n*3] == BUILD_LIST); in tuple_of_constants()
442 case BUILD_TUPLE:
448 ((opcode == BUILD_TUPLE &&
Dcompile.c819 case BUILD_TUPLE: in opcode_stack_effect()
1316 ADDOP_I(c, BUILD_TUPLE, free); in compiler_make_closure()
1431 ADDOP_I(c, BUILD_TUPLE, n); in compiler_class()
2506 ADDOP_I(c, BUILD_TUPLE, n); in compiler_tuple()
3396 ADDOP_I(c, BUILD_TUPLE, n); in compiler_visit_slice()
Dceval.c2177 case BUILD_TUPLE: in PyEval_EvalFrameEx()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
Dpeephole.c44 assert(codestr[n*3] == BUILD_TUPLE || codestr[n*3] == BUILD_LIST); in tuple_of_constants()
433 case BUILD_TUPLE: in PyCode_Optimize()
439 ((opcode == BUILD_TUPLE && in PyCode_Optimize()
Dcompile.c842 case BUILD_TUPLE: in opcode_stack_effect()
1339 ADDOP_I(c, BUILD_TUPLE, free); in compiler_make_closure()
1454 ADDOP_I(c, BUILD_TUPLE, n); in compiler_class()
2526 ADDOP_I(c, BUILD_TUPLE, n); in compiler_tuple()
3416 ADDOP_I(c, BUILD_TUPLE, n); in compiler_visit_slice()
Dceval.c2192 case BUILD_TUPLE: in PyEval_EvalFrameEx()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/
Dpyassem.py735 def BUILD_TUPLE(self, count): member in StackDepthTracker