Lines Matching defs:iop_slot
1180 binary_iop1(PyObject *v, PyObject *w, const int iop_slot, const int op_slot
1188 binaryfunc slot = NB_BINOP(mv, iop_slot);
1206 # define BINARY_IOP1(v, w, iop_slot, op_slot, op_name) binary_iop1(v, w, iop_slot, op_slot)
1208 # define BINARY_IOP1(v, w, iop_slot, op_slot, op_name) binary_iop1(v, w, iop_slot, op_slot, op_name)
1212 binary_iop(PyObject *v, PyObject *w, const int iop_slot, const int op_slot,
1215 PyObject *result = BINARY_IOP1(v, w, iop_slot, op_slot, op_name);
1224 ternary_iop(PyObject *v, PyObject *w, PyObject *z, const int iop_slot, const int op_slot,
1229 ternaryfunc slot = NB_TERNOP(mv, iop_slot);