Lines Matching full:slotw
927 binaryfunc slotw = NULL;
933 slotw = NB_BINOP(w->ob_type->tp_as_number, op_slot);
934 if (slotw == slotv)
935 slotw = NULL;
938 if (slotw && PyType_IsSubtype(w->ob_type, v->ob_type)) {
939 x = slotw(v, w);
943 slotw = NULL;
950 if (slotw) {
951 x = slotw(v, w);
1044 ternaryfunc slotw = NULL;
1053 slotw = NB_TERNOP(mw, op_slot);
1054 if (slotw == slotv)
1055 slotw = NULL;
1058 if (slotw && PyType_IsSubtype(w->ob_type, v->ob_type)) {
1059 x = slotw(v, w, z);
1063 slotw = NULL;
1070 if (slotw) {
1071 x = slotw(v, w, z);
1079 if (slotz == slotv || slotz == slotw)