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

  /external/llvm/unittests/Support/
MathExtrasTest.cpp 49 TEST(MathExtras, CountLeadingZeros_64) {
50 EXPECT_EQ(8u, CountLeadingZeros_64(0x00F1234500F12345LL));
51 EXPECT_EQ(1u, CountLeadingZeros_64(1LL << 62));
53 EXPECT_EQ(63 - i, CountLeadingZeros_64(1LL << i));
  /external/llvm/include/llvm/Support/
MathExtras.h 196 /// CountLeadingZeros_64 - This function performs the platform optimal form
200 inline unsigned CountLeadingZeros_64(uint64_t Value) {
245 return CountLeadingZeros_64(~Value);
342 return 63 - CountLeadingZeros_64(Value);
355 return 64-CountLeadingZeros_64(Value-1);
  /external/llvm/include/llvm/ADT/
APInt.h     [all...]
  /external/llvm/lib/Support/
APInt.cpp 695 return CountLeadingZeros_64(MSW) - (APINT_BITS_PER_WORD - BitsInMSW);
702 Count += CountLeadingZeros_64(pVal[i-1]);
    [all...]
  /external/clang/lib/AST/
Type.cpp 96 return 64 - llvm::CountLeadingZeros_64(TotalSize);
    [all...]
  /external/llvm/lib/Target/X86/
X86ISelDAGToDAG.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp     [all...]

Completed in 5606 milliseconds