Lines Matching refs:mw
874 PyNumberMethods *mv, *mw, *mz; in ternary_op() local
881 mw = w->ob_type->tp_as_number; in ternary_op()
885 mw != NULL) { in ternary_op()
886 slotw = NB_TERNOP(mw, op_slot); in ternary_op()
991 PySequenceMethods *mw = w->ob_type->tp_as_sequence; in PyNumber_Multiply() local
996 else if (mw && mw->sq_repeat) { in PyNumber_Multiply()
997 return sequence_repeat(mw->sq_repeat, w, v); in PyNumber_Multiply()
1136 PySequenceMethods *mw = w->ob_type->tp_as_sequence; in PyNumber_InPlaceMultiply() local
1145 else if (mw != NULL) { in PyNumber_InPlaceMultiply()
1149 if (mw->sq_repeat) in PyNumber_InPlaceMultiply()
1150 return sequence_repeat(mw->sq_repeat, w, v); in PyNumber_InPlaceMultiply()