Lines Matching refs:slotv
926 binaryfunc slotv = NULL; local
930 slotv = NB_BINOP(v->ob_type->tp_as_number, op_slot);
934 if (slotw == slotv)
937 if (slotv) {
945 x = slotv(v, w);
1043 ternaryfunc slotv = NULL; local
1050 slotv = NB_TERNOP(mv, op_slot);
1054 if (slotw == slotv)
1057 if (slotv) {
1065 x = slotv(v, w, z);
1079 if (slotz == slotv || slotz == slotw)
1126 slotv = NB_TERNOP(v1->ob_type->tp_as_number,
1128 if (slotv)
1129 x = slotv(v1, w2, z2);