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

  /external/llvm/unittests/Support/
MathExtrasTest.cpp 64 TEST(MathExtras, CountLeadingOnes_64) {
67 EXPECT_EQ(63u - i, CountLeadingOnes_64(0xFFFFFFFFFFFFFFFFLL ^ (1LL << i)));
  /external/llvm/include/llvm/Support/
MathExtras.h 236 /// CountLeadingOnes_64 - This function performs the operation
240 inline unsigned CountLeadingOnes_64(uint64_t Value) {
  /external/llvm/lib/Support/
APInt.cpp 711 return CountLeadingOnes_64(VAL << (APINT_BITS_PER_WORD - BitWidth));
722 unsigned Count = CountLeadingOnes_64(pVal[i] << shift);
728 Count += CountLeadingOnes_64(pVal[i]);
    [all...]

Completed in 162 milliseconds