HomeSort by: relevance | last modified time | path
    Searched refs:Overflowed (Results 1 - 7 of 7) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Support/
APFixedPoint.cpp 183 bool Overflowed = false;
190 Result = ThisVal.isSigned() ? ThisVal.sadd_ov(OtherVal, Overflowed)
191 : ThisVal.uadd_ov(OtherVal, Overflowed);
195 *Overflow = Overflowed;
207 bool Overflowed = false;
214 Result = ThisVal.isSigned() ? ThisVal.ssub_ov(OtherVal, Overflowed)
215 : ThisVal.usub_ov(OtherVal, Overflowed);
219 *Overflow = Overflowed;
231 bool Overflowed = false;
252 Result = ThisVal.smul_ov(OtherVal, Overflowed)
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/ProfileData/
SampleProf.h 318 bool Overflowed;
319 NumSamples = SaturatingMultiplyAdd(S, Weight, NumSamples, &Overflowed);
320 return Overflowed ? sampleprof_error::counter_overflow
332 bool Overflowed;
334 SaturatingMultiplyAdd(S, Weight, TargetSamples, &Overflowed);
335 return Overflowed ? sampleprof_error::counter_overflow
538 bool Overflowed;
540 SaturatingMultiplyAdd(Num, Weight, TotalSamples, &Overflowed);
541 return Overflowed ? sampleprof_error::counter_overflow
548 bool Overflowed;
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
MathExtras.h 805 bool &Overflowed = ResultOverflowed ? *ResultOverflowed : Dummy;
808 Overflowed = (Z < X || Z < Y);
809 if (Overflowed)
822 bool &Overflowed = ResultOverflowed ? *ResultOverflowed : Dummy;
829 Overflowed = false;
841 Overflowed = true;
850 Overflowed = true;
868 bool &Overflowed = ResultOverflowed ? *ResultOverflowed : Dummy;
870 T Product = SaturatingMultiply(X, Y, &Overflowed);
871 if (Overflowed)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/ProfileData/
InstrProf.cpp 635 bool Overflowed;
636 I->Count = SaturatingMultiplyAdd(J->Count, Weight, I->Count, &Overflowed);
637 if (Overflowed)
649 bool Overflowed;
650 I->Count = SaturatingMultiply(I->Count, N, &Overflowed) / D;
651 if (Overflowed)
687 bool Overflowed;
689 SaturatingMultiplyAdd(Other.Counts[I], Weight, Counts[I], &Overflowed);
690 if (Overflowed)
709 bool Overflowed;
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
PGOMemOPSizeOpt.cpp 289 bool Overflowed;
290 uint64_t ScaleCount = SaturatingMultiply(Count, Num, &Overflowed);
  /src/external/apache2/llvm/dist/clang/lib/AST/
ExprConstant.cpp 13226 bool Overflowed;
13229 DestType->isSignedIntegerOrEnumerationType(), &Overflowed);
13230 if (Overflowed && !HandleOverflow(Info, E, Result, DestType))
13370 bool Overflowed;
13371 APFixedPoint Negated = Result.getFixedPoint().negate(&Overflowed);
13372 if (Overflowed && !HandleOverflow(Info, E, Negated, E->getType()))
13397 bool Overflowed;
13398 APFixedPoint Result = Src.convert(DestFXSema, &Overflowed);
13399 if (Overflowed) {
13414 bool Overflowed;
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaExpr.cpp 3801 bool Overflowed = Literal.GetFixedPointValue(Val, scale);
3802 bool ValIsZero = Val.isNullValue() && !Overflowed;
3811 else if (Val.ugt(MaxVal) || Overflowed)

Completed in 55 milliseconds