Go to the source code of this file.
[inline, static]
Definition at line 40 of file pfmlib_comp_i386.h.
00041 { 00042 unsigned long sum = 0; 00043 00044 for(; v ; v >>=1) { 00045 if (v & 0x1) sum++; 00046 } 00047 return sum; 00048 }