Lines Matching refs:Max
273 APSInt Max = APFixedPoint::getMax(CommonFXSema).getValue() in mul() local
280 else if (Result > Max) in mul()
281 Result = Max; in mul()
283 Overflowed = Result < Min || Result > Max; in mul()
334 APSInt Max = APFixedPoint::getMax(CommonFXSema).getValue() in div() local
341 else if (Result > Max) in div()
342 Result = Max; in div()
344 Overflowed = Result < Min || Result > Max; in div()
371 APSInt Max = APFixedPoint::getMax(Sema).getValue().extOrTrunc(Wide); in shl() local
376 else if (Result > Max) in shl()
377 Result = Max; in shl()
379 Overflowed = Result < Min || Result > Max; in shl()