Gaudi Framework, version v22r4

Home   Generated: Fri Sep 2 2011
Functions

pfmlib_comp_i386.h File Reference

Go to the source code of this file.

Functions

static unsigned long pfmlib_popcnt (unsigned long v)

Function Documentation

static unsigned long pfmlib_popcnt ( unsigned long  v ) [inline, static]

Definition at line 40 of file pfmlib_comp_i386.h.

{
        unsigned long sum = 0;

        for(; v ; v >>=1) {
                if (v & 0x1) sum++;
        }
        return sum;
}
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Defines

Generated at Fri Sep 2 2011 16:25:09 for Gaudi Framework, version v22r4 by Doxygen version 1.7.2 written by Dimitri van Heesch, © 1997-2004