Lines Matching refs:op_slot
923 binary_op1(PyObject *v, PyObject *w, const int op_slot) argument
930 slotv = NB_BINOP(v->ob_type->tp_as_number, op_slot);
933 slotw = NB_BINOP(w->ob_type->tp_as_number, op_slot);
965 slot = NB_BINOP(mv, op_slot);
995 binary_op(PyObject *v, PyObject *w, const int op_slot, const char *op_name) argument
997 PyObject *result = binary_op1(v, w, op_slot);
1038 const int op_slot, argument
1050 slotv = NB_TERNOP(mv, op_slot);
1053 slotw = NB_TERNOP(mw, op_slot);
1078 slotz = NB_TERNOP(mz, op_slot);
1104 op_slot);
1127 op_slot);
1278 binary_iop1(PyObject *v, PyObject *w, const int iop_slot, const int op_slot) argument
1291 return binary_op1(v, w, op_slot);
1295 binary_iop(PyObject *v, PyObject *w, const int iop_slot, const int op_slot, argument
1298 PyObject *result = binary_iop1(v, w, iop_slot, op_slot);