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