Population Parity, 4/8-byte integer
Checks whether the number of bits set in a 32/64-bit integer is an even or odd number.
int __poppar4(unsigned int);
int __poppar8(unsigned long long);
Returns 1 if the number of bits set in the input parameter is odd. Returns 0 otherwise.