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

/external/llvm/include/llvm/Support/
H A DMathExtras.h160 /// CountLeadingZeros_32 - this function performs the platform optimal form of
162 /// bit. Ex. CountLeadingZeros_32(0x00F000FF) == 8.
164 inline unsigned CountLeadingZeros_32(uint32_t Value) { function in namespace:llvm
193 return CountLeadingZeros_32(~Value);
228 Count = CountLeadingZeros_32(Hi);
233 Count = CountLeadingZeros_32(Lo)+32;
336 return 31 - CountLeadingZeros_32(Value);
349 return 32-CountLeadingZeros_32(Value-1);

Completed in 661 milliseconds