Searched refs:x (Results 1 – 1 of 1) sorted by relevance
137 pop (int x) in pop() argument140 x = ((x & ~0x5555) >> 1) + (x & 0x5555); in pop()141 x = ((x & ~0x3333) >> 2) + (x & 0x3333); in pop()142 x = ((x >> 4) + x) & 0x0f0f; in pop()143 x = ((x >> 8) + x) & 0xff; in pop()145 return x; in pop()
Completed in 5 milliseconds