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 428B

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