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

/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DMathExtras.h178 /// CountLeadingZeros_64 - This function performs the platform optimal form
182 inline unsigned CountLeadingZeros_64(uint64_t Value) { function in namespace:llvm
227 return CountLeadingZeros_64(~Value);
318 return 63 - CountLeadingZeros_64(Value);
331 return 64-CountLeadingZeros_64(Value-1);

Completed in 61 milliseconds