Loading [MathJax]/extensions/tex2jax.js
Go to the documentation of this file.
24 #ifndef __PFMLIB_COMP_I386_P6_H__
25 #define __PFMLIB_COMP_I386_P6_H__
27 #ifndef __PFMLIB_COMP_H__
28 # error "you should never include this file directly, use pfmlib_comp.h"
32 # error "you should not be including this file"
39 static inline unsigned long pfmlib_popcnt(
unsigned long v ) {
40 unsigned long sum = 0;
42 for ( ;
v;
v >>= 1 ) {