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

References

lib/CodeGen/AsmPrinter/CodeViewDebug.cpp
 2066                             APSInt::getUnsigned(Enumerator->getValue()),
tools/clang/lib/AST/Expr.cpp
  961       S, llvm::APSInt::getUnsigned(getValue().getZExtValue()), Scale);
tools/clang/lib/AST/ExprConstant.cpp
 2939     return APSInt::getUnsigned(Str.c_str()[Index]);
tools/clang/lib/AST/MicrosoftMangle.cpp
 1508     mangleIntegerLiteral(llvm::APSInt::getUnsigned(0), /*IsBoolean=*/false);
 1842     Extra.mangleIntegerLiteral(llvm::APSInt::getUnsigned(TargetAS),
 2723     Extra.mangleIntegerLiteral(llvm::APSInt::getUnsigned(T->getNumElements()),
tools/clang/lib/CodeGen/CGOpenMPRuntime.cpp
10338         Out << llvm::APSInt::getUnsigned(Data.VecRegSize / NumElts);
10716                 : llvm::APSInt::getUnsigned(
10743                 ParamAttr.StrideOrArg = llvm::APSInt::getUnsigned(
tools/clang/lib/Sema/SemaChecking.cpp
  426     ObjectSize = llvm::APSInt::getUnsigned(Result).extOrTrunc(SizeTypeWidth);
tools/clang/unittests/Basic/FixedPointTest.cpp
  608   ASSERT_EQ(UFixed.getValue(), APSInt::getUnsigned(255 << 8).extOrTrunc(16));
unittests/ADT/APSIntTest.cpp
   55   EXPECT_TRUE(APSInt::getUnsigned(7).isUnsigned());
   56   EXPECT_EQ(64u, APSInt::getUnsigned(7).getBitWidth());
   57   EXPECT_EQ(7u, APSInt::getUnsigned(7).getZExtValue());
   58   EXPECT_EQ(7, APSInt::getUnsigned(7).getSExtValue());
   59   EXPECT_TRUE(APSInt::getUnsigned(-7).isUnsigned());
   60   EXPECT_EQ(64u, APSInt::getUnsigned(-7).getBitWidth());
   61   EXPECT_EQ(-7, APSInt::getUnsigned(-7).getSExtValue());
   62   EXPECT_EQ(UINT64_C(0) - 7, APSInt::getUnsigned(-7).getZExtValue());
   81   auto U = [](uint64_t V) { return APSInt::getUnsigned(V); };