Searched refs:Popcount64 (Results 1 – 1 of 1) sorted by relevance
109 Popcount64(uint64_t x) noexcept { in Popcount64() function129 return sizeof(x) <= sizeof(uint32_t) ? Popcount32(x) : Popcount64(x); in Popcount()