Searched defs:CountLeadingZeros_64 (Results 1 - 1 of 1) sorted by relevance

/external/llvm/include/llvm/Support/
H A DMathExtras.h192 /// CountLeadingZeros_64 - This function performs the platform optimal form
196 inline unsigned CountLeadingZeros_64(uint64_t Value) { function in namespace:llvm
241 return CountLeadingZeros_64(~Value);
332 return 63 - CountLeadingZeros_64(Value);
345 return 64-CountLeadingZeros_64(Value-1);

Completed in 42 milliseconds