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

  /external/capstone/
MathExtras.h 130 /// CountLeadingZeros_64 - This function performs the platform optimal form
134 static inline unsigned CountLeadingZeros_64(uint64_t Value) {
185 return CountLeadingZeros_64(~Value);
282 return 63 - CountLeadingZeros_64(Value);
295 return 64-CountLeadingZeros_64(Value-1);
  /external/swiftshader/third_party/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);

Completed in 86 milliseconds