|
Gaudi Framework, version v22r2 |
| Home | Generated: Tue May 10 2011 |
Go to the source code of this file.
Functions | |
| static unsigned long | pfmlib_popcnt (unsigned long v) |
Definition at line 40 of file pfmlib_comp_i386.h.
{
unsigned long sum = 0;
for(; v ; v >>=1) {
if (v & 0x1) sum++;
}
return sum;
}