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

References

include/llvm/Support/MathExtras.h
  430   return N >= 64 || x <= maxUIntN(N);
lib/Target/AVR/MCTargetDesc/AVRAsmBackend.cpp
   61     int64_t Max = maxUIntN(Width);
tools/lld/ELF/Target.h
  215     reportRangeError(loc, type, Twine(v), 0, llvm::maxUIntN(n));
  224                      llvm::maxUIntN(n));
unittests/CodeGen/LowLevelTypeTest.cpp
  169         static_cast<unsigned>(maxUIntN(23)),
  170         static_cast<unsigned>(maxUIntN(24))}) {
unittests/Support/MathExtrasTest.cpp
  160   EXPECT_EQ(0xffffULL, maxUIntN(16));
  161   EXPECT_EQ(0xffffffffULL, maxUIntN(32));
  162   EXPECT_EQ(0xffffffffffffffffULL, maxUIntN(64));
  163   EXPECT_EQ(1ULL, maxUIntN(1));
  164   EXPECT_EQ(0x0fULL, maxUIntN(4));