Lines Matching defs:Overflowed
860 bool Overflowed;
861 I->Count = SaturatingMultiplyAdd(J.Count, Weight, I->Count, &Overflowed);
862 if (Overflowed)
877 bool Overflowed;
878 I.Count = SaturatingMultiply(I.Count, N, &Overflowed) / D;
879 if (Overflowed)
933 bool Overflowed;
935 SaturatingMultiplyAdd(Other.Counts[I], Weight, Counts[I], &Overflowed);
938 Overflowed = true;
941 if (Overflowed)
972 bool Overflowed;
973 Count = SaturatingMultiply(Count, N, &Overflowed) / D;
976 Overflowed = true;
978 if (Overflowed)