HomeSort by relevance Sort by last modified time
    Searched refs:minIntN (Results 1 - 2 of 2) sorted by null

  /external/llvm/unittests/Support/
MathExtrasTest.cpp 126 TEST(MathExtras, minIntN) {
127 EXPECT_EQ(-32768LL, minIntN(16));
128 EXPECT_EQ(-64LL, minIntN(7));
  /external/llvm/include/llvm/Support/
MathExtras.h 323 inline int64_t minIntN(int64_t N) {
345 return N >= 64 || (minIntN(N) <= x && x <= maxIntN(N));

Completed in 70 milliseconds