Home
last modified time | relevance | path

Searched refs:BUILD_LIST (Results 1 – 10 of 10) sorted by relevance

/external/python/cpython3/Include/
Dopcode.h83 #define BUILD_LIST 103 macro
/external/python/cpython2/Include/
Dopcode.h110 #define BUILD_LIST 103 /* Number of list items */ macro
/external/python/cpython2/Python/
Dpeephole.c44 assert(codestr[n*3] == BUILD_TUPLE || codestr[n*3] == BUILD_LIST); in tuple_of_constants()
434 case BUILD_LIST: in PyCode_Optimize()
441 (opcode == BUILD_LIST && in PyCode_Optimize()
Dcompile.c843 case BUILD_LIST: in opcode_stack_effect()
2474 ADDOP_I(c, BUILD_LIST, n); in compiler_list()
2634 ADDOP_I(c, BUILD_LIST, 0); in compiler_listcomp()
Dceval.c2476 TARGET(BUILD_LIST) in PyEval_EvalFrameEx()
/external/python/cpython2/Lib/compiler/
Dpyassem.py737 def BUILD_LIST(self, count): member in StackDepthTracker
/external/python/cpython3/Python/
Dcompile.c997 case BUILD_LIST: in stack_effect()
3791 return starunpack_helper(c, elts, 0, BUILD_LIST, in compiler_list()
3807 return starunpack_helper(c, elts, 0, BUILD_LIST, in compiler_tuple()
4309 else if (starunpack_helper(c, args, n, BUILD_LIST, in compiler_call_helper()
4635 op = BUILD_LIST; in compiler_comprehension()
Dceval.c2752 case TARGET(BUILD_LIST): { in _PyEval_EvalFrameDefault()
/external/python/cpython2/Doc/library/
Ddis.rst645 .. opcode:: BUILD_LIST (count)
/external/python/cpython3/Doc/library/
Ddis.rst824 .. opcode:: BUILD_LIST (count)