Home
last modified time | relevance | path

Searched refs:STORE_FAST (Results 1 – 8 of 8) sorted by relevance

/external/python/cpython2/Include/
Dopcode.h134 #define STORE_FAST 125 /* Local variable number */ macro
/external/python/cpython3/Include/
Dopcode.h100 #define STORE_FAST 125 macro
/external/python/cpython2/Doc/library/
Ddis.rst552 store it in (a) variable(s) (:opcode:`STORE_FAST`, :opcode:`STORE_NAME`, or
586 :attr:`co_names` of the code object. The compiler tries to use ``STORE_FAST``
679 a proper import statement, a subsequent ``STORE_FAST`` instruction modifies
687 ``STORE_FAST`` instruction.
762 .. opcode:: STORE_FAST (var_num)
/external/python/cpython3/Doc/library/
Ddis.rst711 store it in (a) variable(s) (:opcode:`STORE_FAST`, :opcode:`STORE_NAME`, or
751 :opcode:`STORE_FAST` or :opcode:`STORE_GLOBAL` if possible.
926 a proper import statement, a subsequent :opcode:`STORE_FAST` instruction
934 :opcode:`STORE_FAST` instruction.
1013 .. opcode:: STORE_FAST (var_num)
/external/python/cpython3/Python/
Dceval.c1095 PREDICTED(STORE_FAST); in _PyEval_EvalFrameDefault()
1096 TARGET(STORE_FAST) { in _PyEval_EvalFrameDefault()
2812 PREDICT(STORE_FAST); in _PyEval_EvalFrameDefault()
5021 case STORE_FAST: in unicode_concatenate()
Dcompile.c1059 case STORE_FAST: in stack_effect()
3231 case Store: op = STORE_FAST; break; in compiler_nameop()
/external/python/cpython2/Python/
Dceval.c1243 PREDICTED_WITH_ARG(STORE_FAST); in PyEval_EvalFrameEx()
1244 TARGET(STORE_FAST) in PyEval_EvalFrameEx()
2831 PREDICT(STORE_FAST); in PyEval_EvalFrameEx()
5174 case STORE_FAST: in string_concatenate()
Dcompile.c879 case STORE_FAST: in opcode_stack_effect()
2385 case Store: op = STORE_FAST; break; in compiler_nameop()