Lines Matching defs:Overflowed
194 bool Overflowed = false;
201 Result = ThisVal.isSigned() ? ThisVal.sadd_ov(OtherVal, Overflowed)
202 : ThisVal.uadd_ov(OtherVal, Overflowed);
206 *Overflow = Overflowed;
218 bool Overflowed = false;
225 Result = ThisVal.isSigned() ? ThisVal.ssub_ov(OtherVal, Overflowed)
226 : ThisVal.usub_ov(OtherVal, Overflowed);
230 *Overflow = Overflowed;
242 bool Overflowed = false;
263 Result = ThisVal.smul_ov(OtherVal, Overflowed)
266 Result = ThisVal.umul_ov(OtherVal, Overflowed)
268 assert(!Overflowed && "Full multiplication cannot overflow!");
283 Overflowed = Result < Min || Result > Max;
286 *Overflow = Overflowed;
299 bool Overflowed = false;
344 Overflowed = Result < Min || Result > Max;
347 *Overflow = Overflowed;
355 bool Overflowed = false;
379 Overflowed = Result < Min || Result > Max;
382 *Overflow = Overflowed;
596 bool Overflowed = false;
603 Overflowed = Val > FloatMax || Val < FloatMin;
606 *Overflow = Overflowed;