Lines Matching defs:Overflowed
879 bool Overflowed;
880 I->Count = SaturatingMultiplyAdd(J.Count, Weight, I->Count, &Overflowed);
881 if (Overflowed)
896 bool Overflowed;
897 I.Count = SaturatingMultiply(I.Count, N, &Overflowed) / D;
898 if (Overflowed)
952 bool Overflowed;
954 SaturatingMultiplyAdd(Other.Counts[I], Weight, Counts[I], &Overflowed);
957 Overflowed = true;
960 if (Overflowed)
991 bool Overflowed;
992 Count = SaturatingMultiply(Count, N, &Overflowed) / D;
995 Overflowed = true;
997 if (Overflowed)