Lines Matching refs:MatchMinMax
48635 auto MatchMinMax = [](SDValue V, unsigned Opcode, APInt &Limit) -> SDValue { in detectUSatPattern() local
48643 if (SDValue UMin = MatchMinMax(In, ISD::UMIN, C2)) in detectUSatPattern()
48649 if (SDValue SMin = MatchMinMax(In, ISD::SMIN, C2)) in detectUSatPattern()
48650 if (MatchMinMax(SMin, ISD::SMAX, C1)) in detectUSatPattern()
48654 if (SDValue SMax = MatchMinMax(In, ISD::SMAX, C1)) in detectUSatPattern()
48655 if (SDValue SMin = MatchMinMax(SMax, ISD::SMIN, C2)) in detectUSatPattern()
48678 auto MatchMinMax = [](SDValue V, unsigned Opcode, in detectSSatPattern() local
48696 if (SDValue SMin = MatchMinMax(In, ISD::SMIN, SignedMax)) in detectSSatPattern()
48697 if (SDValue SMax = MatchMinMax(SMin, ISD::SMAX, SignedMin)) in detectSSatPattern()
48700 if (SDValue SMax = MatchMinMax(In, ISD::SMAX, SignedMin)) in detectSSatPattern()
48701 if (SDValue SMin = MatchMinMax(SMax, ISD::SMIN, SignedMax)) in detectSSatPattern()