Home
last modified time | relevance | path

Searched defs:oparg (Results 1 – 10 of 10) sorted by relevance

/third_party/python/Modules/
D_opcode.c26 _opcode_stack_effect_impl(PyObject *module, int opcode, PyObject *oparg, in _opcode_stack_effect_impl()
/third_party/python/Modules/clinic/
D_opcode.c.h27 PyObject *oparg = Py_None; in _opcode_stack_effect() local
/third_party/python/Include/cpython/
Dcode.h24 # define _Py_MAKECODEUNIT(opcode, oparg) (((opcode)<<8)|(oparg)) argument
28 # define _Py_MAKECODEUNIT(opcode, oparg) ((opcode)|((oparg)<<8)) argument
/third_party/python/Python/
Dspecialize.c1370 PyObject *kwnames, int oparg) in specialize_class_call()
1431 int nargs, PyObject *kwnames, int oparg) in specialize_method_descriptor()
1632 PyObject *kwnames, int oparg) in _Py_Specialize_Precall()
1706 binary_op_fail_kind(int oparg, PyObject *lhs, PyObject *rhs) in binary_op_fail_kind()
1776 int oparg, PyObject **locals) in _Py_Specialize_BinaryOp()
1905 int oparg) in _Py_Specialize_CompareOp()
1996 _Py_Specialize_UnpackSequence(PyObject *seq, _Py_CODEUNIT *instr, int oparg) in _Py_Specialize_UnpackSequence()
Dcompile.c199 int oparg = HAS_ARG(opcode) ? instruction->i_oparg : 0; in instr_size() local
210 int oparg = HAS_ARG(opcode) ? instruction->i_oparg : 0; in write_instr() local
944 stack_effect(int opcode, int oparg, int jump) in stack_effect()
1200 PyCompile_OpcodeStackEffectWithJump(int opcode, int oparg, int jump) in PyCompile_OpcodeStackEffectWithJump()
1206 PyCompile_OpcodeStackEffect(int opcode, int oparg) in PyCompile_OpcodeStackEffect()
1482 compiler_addop_i_line(struct compiler *c, int opcode, Py_ssize_t oparg, in compiler_addop_i_line()
1521 compiler_addop_i(struct compiler *c, int opcode, Py_ssize_t oparg) in compiler_addop_i()
1529 compiler_addop_i_noline(struct compiler *c, int opcode, Py_ssize_t oparg) in compiler_addop_i_noline()
4186 int oparg; in addop_binary() local
4999 int oparg; in compiler_formatted_value() local
[all …]
Dceval.c133 int oparg = _Py_OPARG(*next_instr); in lltrace_instruction() local
1651 int oparg; /* Current opcode argument, if any */ local
7777 format_exc_unbound(PyThreadState *tstate, PyCodeObject *co, int oparg)
7794 format_awaitable_error(PyThreadState *tstate, PyTypeObject *type, int oparg)
/third_party/python/Objects/clinic/
Dcodeobject.c.h424 int oparg; in code__varname_from_oparg() local
/third_party/ltp/include/lapi/
Dfutex.h164 #define FUTEX_OP(op, oparg, cmp, cmparg) \ argument
/third_party/python/Objects/
Dframeobject.c117 unsigned int oparg = _Py_OPARG(codestr[i]); in get_arg() local
1077 _PyFrame_OpAlreadyRan(_PyInterpreterFrame *frame, int opcode, int oparg) in _PyFrame_OpAlreadyRan()
Dcodeobject.c2001 code__varname_from_oparg_impl(PyCodeObject *self, int oparg) in code__varname_from_oparg_impl()