MCPcopy Create free account
hub / github.com/davidgiven/fluxengine / countSetBits

Function countSetBits

lib/core/utils.cc:208–217  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

206}
207
208int countSetBits(uint32_t word)
209{
210 int b = 0;
211 while (word)
212 {
213 b += word & 1;
214 word >>= 1;
215 }
216 return b;
217}
218
219uint32_t unbcd(uint32_t bcd)
220{

Callers 1

mountMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected