Files
bl/common/utils/bitset/popcnt_19.go
xinian 16b6adf1a1
All checks were successful
ci/woodpecker/push/my-first-workflow Pipeline was successful
1
2026-02-19 14:54:36 +08:00

51 lines
808 B
Go

package bitset32
import "math/bits"
func popcntSlice(s []uint32) uint64 {
// 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)
}