You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

popcnt_generic.go 438B

123456789101112131415161718192021222324
  1. // +build !go1.9
  2. // +build !amd64 appengine
  3. package bitset
  4. func popcntSlice(s []uint64) uint64 {
  5. return popcntSliceGo(s)
  6. }
  7. func popcntMaskSlice(s, m []uint64) uint64 {
  8. return popcntMaskSliceGo(s, m)
  9. }
  10. func popcntAndSlice(s, m []uint64) uint64 {
  11. return popcntAndSliceGo(s, m)
  12. }
  13. func popcntOrSlice(s, m []uint64) uint64 {
  14. return popcntOrSliceGo(s, m)
  15. }
  16. func popcntXorSlice(s, m []uint64) uint64 {
  17. return popcntXorSliceGo(s, m)
  18. }