reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Transforms/InstCombine/InstCombineCalls.cpp
 2098         APInt Min = APSInt::getMinValue(BitWidth, !SI->isSigned());
tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/APSIntType.h
   61     return llvm::APSInt::getMinValue(BitWidth, IsUnsigned);
tools/clang/lib/Analysis/CFG.cpp
 1088       llvm::APSInt::getMinValue(L1.getBitWidth(), L1.isUnsigned()),
tools/clang/lib/Basic/FixedPoint.cpp
  123   auto Val = llvm::APSInt::getMinValue(Sema.getWidth(), !Sema.isSigned());
  226   llvm::APSInt DstMin = llvm::APSInt::getMinValue(DstWidth, !DstSign);
tools/clang/lib/CodeGen/CGExprScalar.cpp
  892   APSInt Min = APSInt::getMinValue(Width, Unsigned);
tools/clang/lib/Sema/SemaChecking.cpp
10530       PromotedMin = llvm::APSInt::getMinValue(BitWidth, Unsigned);
10533       PromotedMin = llvm::APSInt::getMinValue(R.Width, R.NonNegative)
tools/clang/tools/extra/clang-tidy/cppcoreguidelines/NarrowingConversionsCheck.cpp
  143   return {llvm::APSInt::getMinValue(TypeSize, IsUnsignedInteger),
tools/clang/unittests/Basic/FixedPointTest.cpp
  145             APSInt::getMinValue(Sema.getWidth(), !Sema.isSigned()));
tools/clang/unittests/Frontend/FixedPointString.cpp
   93   FixedPointValueToString(S, APSInt::getMinValue(16, /*Unsigned=*/false), 7);
   98   FixedPointValueToString(S, APSInt::getMinValue(32, /*Unsigned=*/false), 15);
  103   FixedPointValueToString(S, APSInt::getMinValue(64, /*Unsigned=*/false), 31);
unittests/ADT/APFloatTest.cpp
 1065   EXPECT_EQ(APSInt::getMinValue(5, true), result);
 1090   EXPECT_EQ(APSInt::getMinValue(5, false), result);