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