PAPI 7.1.0.0
Loading...
Searching...
No Matches
pfmlib_comp_mips64.h File Reference

Go to the source code of this file.

Functions

static unsigned long pfmlib_popcnt (unsigned long v)
 

Function Documentation

◆ pfmlib_popcnt()

static unsigned long pfmlib_popcnt ( unsigned long  v)
inlinestatic

Definition at line 41 of file pfmlib_comp_mips64.h.

42{
43 unsigned long sum = 0;
44
45 for(; v ; v >>=1) {
46 if (v & 0x1) sum++;
47 }
48 return sum;
49}