Searched refs:_Py_OPCODE (Results 1 – 4 of 4) sorted by relevance
8 # define _Py_OPCODE(word) ((word) >> 8) macro11 # define _Py_OPCODE(word) ((word) & 255) macro
82 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()146 opcode = _Py_OPCODE(code[i]); in markblocks()
301 unsigned char opcode = _Py_OPCODE(opcodes[i]); in _PyCode_InitOpcache()
1335 opcode = _Py_OPCODE(word); \1376 opcode = _Py_OPCODE(word); \1754 opcode = _Py_OPCODE(*next_instr); in _PyEval_EvalFrameDefault()2548 opcode_at_minus_3 = _Py_OPCODE(next_instr[-3]); in _PyEval_EvalFrameDefault()2552 _Py_OPCODE(next_instr[-2])); in _PyEval_EvalFrameDefault()