Lines Matching defs:Overflowed
204 bool Overflowed = false;
211 Result = ThisVal.isSigned() ? ThisVal.sadd_ov(OtherVal, Overflowed)
212 : ThisVal.uadd_ov(OtherVal, Overflowed);
216 *Overflow = Overflowed;
228 bool Overflowed = false;
235 Result = ThisVal.isSigned() ? ThisVal.ssub_ov(OtherVal, Overflowed)
236 : ThisVal.usub_ov(OtherVal, Overflowed);
240 *Overflow = Overflowed;
252 bool Overflowed = false;
273 Result = ThisVal.smul_ov(OtherVal, Overflowed)
276 Result = ThisVal.umul_ov(OtherVal, Overflowed)
278 assert(!Overflowed && "Full multiplication cannot overflow!");
293 Overflowed = Result < Min || Result > Max;
296 *Overflow = Overflowed;
309 bool Overflowed = false;
354 Overflowed = Result < Min || Result > Max;
357 *Overflow = Overflowed;
365 bool Overflowed = false;
389 Overflowed = Result < Min || Result > Max;
392 *Overflow = Overflowed;
606 bool Overflowed = false;
613 Overflowed = Val > FloatMax || Val < FloatMin;
616 *Overflow = Overflowed;