Files
bl/common/utils/bitset/popcnt_19.go

51 lines
808 B
Go
Raw Normal View History

package bitset32
import "math/bits"
func popcntSlice(s []uint32) uint64 {
2026-02-19 14:54:36 +08:00
// int r = 0;
// while(n)
// {
// n &= (n - 1);
// ++r;
// }
var cnt int
for _, x := range s {
cnt += bits.OnesCount32(x)
}
return uint64(cnt)
}
func popcntMaskSlice(s, m []uint32) uint64 {
var cnt int
for i := range s {
cnt += bits.OnesCount32(s[i] &^ m[i])
}
return uint64(cnt)
}
func popcntAndSlice(s, m []uint32) uint64 {
var cnt int
for i := range s {
cnt += bits.OnesCount32(s[i] & m[i])
}
return uint64(cnt)
}
func popcntOrSlice(s, m []uint32) uint64 {
var cnt int
for i := range s {
cnt += bits.OnesCount32(s[i] | m[i])
}
return uint64(cnt)
}
func popcntXorSlice(s, m []uint32) uint64 {
var cnt int
for i := range s {
cnt += bits.OnesCount32(s[i] ^ m[i])
}
return uint64(cnt)
}