Lines Matching refs:Max
262 APSInt Max = APFixedPoint::getMax(CommonFXSema).getValue() in mul() local
269 else if (Result > Max) in mul()
270 Result = Max; in mul()
272 Overflowed = Result < Min || Result > Max; in mul()
317 APSInt Max = APFixedPoint::getMax(CommonFXSema).getValue() in div() local
324 else if (Result > Max) in div()
325 Result = Max; in div()
327 Overflowed = Result < Min || Result > Max; in div()
354 APSInt Max = APFixedPoint::getMax(Sema).getValue().extOrTrunc(Wide); in shl() local
359 else if (Result > Max) in shl()
360 Result = Max; in shl()
362 Overflowed = Result < Min || Result > Max; in shl()