Home
last modified time | relevance | path

Searched refs:EXTENDED_ARG (Results 1 – 13 of 13) sorted by relevance

/third_party/python/Python/
Dwordcode_helpers.h30 *codestr++ = PACKOPARG(EXTENDED_ARG, (oparg >> 24) & 0xff); in write_op_arg()
33 *codestr++ = PACKOPARG(EXTENDED_ARG, (oparg >> 16) & 0xff); in write_op_arg()
36 *codestr++ = PACKOPARG(EXTENDED_ARG, (oparg >> 8) & 0xff); in write_op_arg()
Dceval.c4409 case TARGET(EXTENDED_ARG): { in _PyEval_EvalFrameDefault()
Dcompile.c958 case EXTENDED_ARG: in stack_effect()
/third_party/python/Include/
Dopcode.h122 #define EXTENDED_ARG 144 macro
/third_party/python/Lib/
Dopcode.py195 EXTENDED_ARG = 144 variable
Dmodulefinder.py17 EXTENDED_ARG = dis.EXTENDED_ARG variable
401 if op != EXTENDED_ARG]
Ddis.py428 extended_arg = (arg << 8) if op == EXTENDED_ARG else 0
/third_party/python/Objects/
Dframeobject.c82 if (i >= 1 && _Py_OPCODE(word = codestr[i-1]) == EXTENDED_ARG) { in get_arg()
84 if (i >= 2 && _Py_OPCODE(word = codestr[i-2]) == EXTENDED_ARG) { in get_arg()
86 if (i >= 3 && _Py_OPCODE(word = codestr[i-3]) == EXTENDED_ARG) { in get_arg()
/third_party/python/Doc/library/
Ddis.rst1211 .. opcode:: EXTENDED_ARG (ext)
1215 For each opcode, at most three prefixal ``EXTENDED_ARG`` are allowed, forming
/third_party/python/Misc/NEWS.d/
D3.10.0a7.rst76 This reduces the number of EXTENDED_ARG instructions needed and streamlines
D3.10.1.rst336 :opcode:`EXTENDED_ARG` is followed by an opcode that does not use its
D3.8.0a1.rst5067 EXTENDED_ARG.
/third_party/python/Lib/test/
Dtest_dis.py522 self.assertEqual(dis.opmap["EXTENDED_ARG"], dis.EXTENDED_ARG)