mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-06 00:25:55 +00:00
10 lines
464 B
Go
10 lines
464 B
Go
// +build !amd64
|
|
|
|
package pilosa
|
|
|
|
func popcntSlice(s []uint64) uint64 { return popcntSliceGo(s) }
|
|
func popcntMaskSlice(s, m []uint64) uint64 { return popcntMaskSliceGo(s, m) }
|
|
func popcntAndSlice(s, m []uint64) uint64 { return popcntAndSliceGo(s, m) }
|
|
func popcntOrSlice(s, m []uint64) uint64 { return popcntOrSliceGo(s, m) }
|
|
func popcntXorSlice(s, m []uint64) uint64 { return popcntXorSliceGo(s, m) }
|
|
func popcnt(s uint64) uint64 { return popcntGo(s)}
|