13 #ifndef __STOUT_BITS_HPP__ 14 #define __STOUT_BITS_HPP__ 27 value = value - ((value >> 1) & 0x55555555);
28 value = (value & 0x33333333) + ((value >> 2) & 0x33333333);
29 count = (((value + (value >> 4)) & 0x0F0F0F0F) * 0x01010101) >> 24;
36 #endif // __STOUT_BITS_HPP__ int countSetBits(uint32_t value)
Definition: bits.hpp:24