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

  /external/capstone/
MathExtras.h 93 /// CountLeadingZeros_32 - this function performs the platform optimal form of
95 /// bit. Ex. CountLeadingZeros_32(0x00F000FF) == 8.
97 static inline unsigned CountLeadingZeros_32(uint32_t Value) {
127 return CountLeadingZeros_32(~Value);
168 Count = CountLeadingZeros_32(Hi);
173 Count = CountLeadingZeros_32(Lo)+32;
276 return 31 - CountLeadingZeros_32(Value);
289 return 32-CountLeadingZeros_32(Value-1);
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
MathExtras.h 142 /// CountLeadingZeros_32 - this function performs the platform optimal form of
144 /// bit. Ex. CountLeadingZeros_32(0x00F000FF) == 8.
146 inline unsigned CountLeadingZeros_32(uint32_t Value) {
175 return CountLeadingZeros_32(~Value);
210 Count = CountLeadingZeros_32(Hi);
215 Count = CountLeadingZeros_32(Lo)+32;
312 return 31 - CountLeadingZeros_32(Value);
325 return 32-CountLeadingZeros_32(Value-1);

Completed in 660 milliseconds