Lines Matching full:overflowed
179 bool Overflowed;
181 JCount = SaturatingMultiply(JCount, Weight, &Overflowed);
182 if (Overflowed)
185 I->Count = SaturatingAdd(I->Count, JCount, &Overflowed);
186 if (Overflowed)
226 bool Overflowed;
229 OtherCount = SaturatingMultiply(OtherCount, Weight, &Overflowed);
230 if (Overflowed)
233 Counts[I] = SaturatingAdd(Counts[I], OtherCount, &Overflowed);
234 if (Overflowed)