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

/external/capstone/
H A DMathExtras.h188 /// CountTrailingZeros_32 - this function performs the platform optimal form of
190 /// bit. Ex. CountTrailingZeros_32(0xFF00FF00) == 8.
192 static inline unsigned CountTrailingZeros_32(uint32_t Value) { function
213 return CountTrailingZeros_32(~Value);
/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DMathExtras.h230 /// CountTrailingZeros_32 - this function performs the platform optimal form of
232 /// bit. Ex. CountTrailingZeros_32(0xFF00FF00) == 8.
234 inline unsigned CountTrailingZeros_32(uint32_t Value) { function in namespace:llvm
252 return CountTrailingZeros_32(~Value);

Completed in 2951 milliseconds