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

/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DMathExtras.h142 /// 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) { function in namespace:llvm
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 177 milliseconds