Searched defs:POPCOUNT (Results 1 - 1 of 1) sorted by relevance

/vbox/src/recompiler/target-i386/
H A Dops_sse.h2080 #define POPCOUNT(n, i) (n & POPMASK(i)) + ((n >> (1 << i)) & POPMASK(i)) macro
2085 n = POPCOUNT(n, 0);
2086 n = POPCOUNT(n, 1);
2087 n = POPCOUNT(n, 2);
2088 n = POPCOUNT(n, 3);
2092 n = POPCOUNT(n, 4);
2099 return POPCOUNT(n, 5);

Completed in 51 milliseconds