Lines Matching refs:Max
267 APSInt Max = APFixedPoint::getMax(CommonFXSema).getValue() in mul() local
274 else if (Result > Max) in mul()
275 Result = Max; in mul()
277 Overflowed = Result < Min || Result > Max; in mul()
328 APSInt Max = APFixedPoint::getMax(CommonFXSema).getValue() in div() local
335 else if (Result > Max) in div()
336 Result = Max; in div()
338 Overflowed = Result < Min || Result > Max; in div()
365 APSInt Max = APFixedPoint::getMax(Sema).getValue().extOrTrunc(Wide); in shl() local
370 else if (Result > Max) in shl()
371 Result = Max; in shl()
373 Overflowed = Result < Min || Result > Max; in shl()