Lines Matching refs:Overflow

33                                    bool *Overflow) const {  in convert()
36 if (Overflow) in convert()
37 *Overflow = false; in convert()
54 else if (Overflow) in convert()
55 *Overflow = true; in convert()
64 else if (Overflow) in convert()
65 *Overflow = true; in convert()
182 bool *Overflow) const { in add()
199 if (Overflow) in add()
200 *Overflow = Overflowed; in add()
206 bool *Overflow) const { in sub()
223 if (Overflow) in sub()
224 *Overflow = Overflowed; in sub()
230 bool *Overflow) const { in mul()
279 if (Overflow) in mul()
280 *Overflow = Overflowed; in mul()
287 bool *Overflow) const { in div()
340 if (Overflow) in div()
341 *Overflow = Overflowed; in div()
347 APFixedPoint APFixedPoint::shl(unsigned Amt, bool *Overflow) const { in shl()
375 if (Overflow) in shl()
376 *Overflow = Overflowed; in shl()
428 APFixedPoint APFixedPoint::negate(bool *Overflow) const { in negate()
430 if (Overflow) in negate()
431 *Overflow = in negate()
437 if (Overflow) in negate()
438 *Overflow = false; in negate()
447 bool *Overflow) const { in convertToInt()
461 if (Overflow) { in convertToInt()
463 *Overflow = Result.isNegative() || Result.ugt(DstMax); in convertToInt()
465 *Overflow = Result.ugt(DstMax); in convertToInt()
467 *Overflow = Result < DstMin || Result > DstMax; in convertToInt()
525 bool *Overflow) { in getFromIntValue() argument
528 return APFixedPoint(Value, IntFXSema).convert(DstFXSema, Overflow); in getFromIntValue()
534 bool *Overflow) { in getFromFloatValue() argument
546 if (Overflow) in getFromFloatValue()
547 *Overflow = true; in getFromFloatValue()
599 if (Overflow) in getFromFloatValue()
600 *Overflow = Overflowed; in getFromFloatValue()