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

/external/llvm/include/llvm/Support/
H A DMathExtras.h244 /// CountTrailingZeros_32 - this function performs the platform optimal form of
246 /// bit. Ex. CountTrailingZeros_32(0xFF00FF00) == 8.
248 inline unsigned CountTrailingZeros_32(uint32_t Value) { function in namespace:llvm
266 return CountTrailingZeros_32(~Value);

Completed in 62 milliseconds