Home
last modified time | relevance | path

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

/third_party/python/Objects/
Dabstract.c857 binary_op1(PyObject *v, PyObject *w, const int op_slot in binary_op1() argument
865 slotv = NB_BINOP(Py_TYPE(v)->tp_as_number, op_slot); in binary_op1()
873 slotw = NB_BINOP(Py_TYPE(w)->tp_as_number, op_slot); in binary_op1()
910 # define BINARY_OP1(v, w, op_slot, op_name) binary_op1(v, w, op_slot) argument
912 # define BINARY_OP1(v, w, op_slot, op_name) binary_op1(v, w, op_slot, op_name) argument
928 binary_op(PyObject *v, PyObject *w, const int op_slot, const char *op_name) in binary_op() argument
930 PyObject *result = BINARY_OP1(v, w, op_slot, op_name); in binary_op()
934 if (op_slot == NB_SLOT(nb_rshift) && in binary_op()
964 const int op_slot, in ternary_op() argument
973 slotv = NB_TERNOP(mv, op_slot); in ternary_op()
[all …]