Searched refs:maxIntN (Results 1 - 2 of 2) sorted by relevance

/external/llvm/unittests/Support/
H A DMathExtrasTest.cpp121 TEST(MathExtras, maxIntN) {
122 EXPECT_EQ(32767, maxIntN(16));
123 EXPECT_EQ(2147483647, maxIntN(32));
/external/llvm/include/llvm/Support/
H A DMathExtras.h330 inline int64_t maxIntN(int64_t N) { function in namespace:llvm
345 return N >= 64 || (minIntN(N) <= x && x <= maxIntN(N));

Completed in 331 milliseconds