mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	* update github.com/PuerkitoBio/goquery * update github.com/alecthomas/chroma * update github.com/blevesearch/bleve/v2 * update github.com/caddyserver/certmagic * update github.com/go-enry/go-enry/v2 * update github.com/go-git/go-billy/v5 * update github.com/go-git/go-git/v5 * update github.com/go-redis/redis/v8 * update github.com/go-testfixtures/testfixtures/v3 * update github.com/jaytaylor/html2text * update github.com/json-iterator/go * update github.com/klauspost/compress * update github.com/markbates/goth * update github.com/mattn/go-isatty * update github.com/mholt/archiver/v3 * update github.com/microcosm-cc/bluemonday * update github.com/minio/minio-go/v7 * update github.com/prometheus/client_golang * update github.com/unrolled/render * update github.com/xanzy/go-gitlab * update github.com/yuin/goldmark * update github.com/yuin/goldmark-highlighting Co-authored-by: techknowlogick <techknowlogick@gitea.io>
		
			
				
	
	
		
			54 lines
		
	
	
		
			1020 B
		
	
	
	
		
			Go
		
	
	
	
		
			Vendored
		
	
	
	
			
		
		
	
	
			54 lines
		
	
	
		
			1020 B
		
	
	
	
		
			Go
		
	
	
	
		
			Vendored
		
	
	
	
package bitset
 | 
						|
 | 
						|
// bit population count, take from
 | 
						|
// https://code.google.com/p/go/issues/detail?id=4988#c11
 | 
						|
// credit: https://code.google.com/u/arnehormann/
 | 
						|
func popcount(x uint64) (n uint64) {
 | 
						|
	x -= (x >> 1) & 0x5555555555555555
 | 
						|
	x = (x>>2)&0x3333333333333333 + x&0x3333333333333333
 | 
						|
	x += x >> 4
 | 
						|
	x &= 0x0f0f0f0f0f0f0f0f
 | 
						|
	x *= 0x0101010101010101
 | 
						|
	return x >> 56
 | 
						|
}
 | 
						|
 | 
						|
func popcntSliceGo(s []uint64) uint64 {
 | 
						|
	cnt := uint64(0)
 | 
						|
	for _, x := range s {
 | 
						|
		cnt += popcount(x)
 | 
						|
	}
 | 
						|
	return cnt
 | 
						|
}
 | 
						|
 | 
						|
func popcntMaskSliceGo(s, m []uint64) uint64 {
 | 
						|
	cnt := uint64(0)
 | 
						|
	for i := range s {
 | 
						|
		cnt += popcount(s[i] &^ m[i])
 | 
						|
	}
 | 
						|
	return cnt
 | 
						|
}
 | 
						|
 | 
						|
func popcntAndSliceGo(s, m []uint64) uint64 {
 | 
						|
	cnt := uint64(0)
 | 
						|
	for i := range s {
 | 
						|
		cnt += popcount(s[i] & m[i])
 | 
						|
	}
 | 
						|
	return cnt
 | 
						|
}
 | 
						|
 | 
						|
func popcntOrSliceGo(s, m []uint64) uint64 {
 | 
						|
	cnt := uint64(0)
 | 
						|
	for i := range s {
 | 
						|
		cnt += popcount(s[i] | m[i])
 | 
						|
	}
 | 
						|
	return cnt
 | 
						|
}
 | 
						|
 | 
						|
func popcntXorSliceGo(s, m []uint64) uint64 {
 | 
						|
	cnt := uint64(0)
 | 
						|
	for i := range s {
 | 
						|
		cnt += popcount(s[i] ^ m[i])
 | 
						|
	}
 | 
						|
	return cnt
 | 
						|
}
 |