OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CountLeadingZeros_64
(Results
1 - 6
of
6
) 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
178
///
CountLeadingZeros_64
- This function performs the platform optimal form
182
inline unsigned
CountLeadingZeros_64
(uint64_t Value) {
227
return
CountLeadingZeros_64
(~Value);
318
return 63 -
CountLeadingZeros_64
(Value);
331
return 64-
CountLeadingZeros_64
(Value-1);
/external/llvm/lib/Target/Alpha/
AlphaISelDAGToDAG.cpp
115
unsigned at =
CountLeadingZeros_64
(x);
/external/llvm/include/llvm/ADT/
APInt.h
[
all
...]
/external/llvm/lib/Support/
APInt.cpp
784
return
CountLeadingZeros_64
(MSW) - (APINT_BITS_PER_WORD - BitsInMSW);
791
Count +=
CountLeadingZeros_64
(pVal[i-1]);
[
all
...]
/external/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp
[
all
...]
Completed in 2199 milliseconds