mirror of
https://gitcode.com/gitea/gitea.git
synced 2025-07-04 03:37:01 +08:00
go.modgo.summodules.txt
vendor
github.com
RoaringBitmap/roaring
.drone.yml.travis.ymlAUTHORSCONTRIBUTORSLICENSEMakefileREADME.mdarraycontainer.goarraycontainer_gen.gobitmapcontainer.gobitmapcontainer_gen.gobyte_input.goclz.goclz_compat.gogo.modgo.summanyiterator.goparallel.gorle.gorle_gen.gorlecommon.gorlei.goroaring.goroaringarray.goroaringarray_gen.goruncontainer.goruncontainer_gen.goserialization.goserialization_generic.goserialization_littleendian.goshortiterator.goutil.go
blevesearch
bleve
.travis.yml
document
geo
index.goindex
index.go
index_alias_impl.goindex_impl.goscorch
introducer.gomerge.gopersister.goscorch.go
segment
snapshot_index.gosnapshot_index_dict.gosnapshot_segment.gostats.goupsidedown
mapping
numeric
search.gosearch
segment
couchbase/vellum
etcd-io/bbolt
glycerine/go-unsnap-stream
tinylib/msgp/msgp
willf/bitset
golang.org/x/sys
cpu
unix
bluetooth_linux.gofdset.gomkerrors.shsockcmsg_dragonfly.gosockcmsg_linux.gosockcmsg_unix.gosockcmsg_unix_other.gosyscall_bsd.gosyscall_darwin.1_13.gosyscall_darwin.gosyscall_darwin_386.gosyscall_darwin_amd64.gosyscall_darwin_arm.gosyscall_darwin_arm64.gosyscall_dragonfly.gosyscall_freebsd.gosyscall_linux.gosyscall_netbsd.gosyscall_openbsd.gosyscall_solaris.gozerrors_aix_ppc.gozerrors_aix_ppc64.gozerrors_linux_386.gozerrors_linux_amd64.gozerrors_linux_arm.gozerrors_linux_arm64.gozerrors_linux_mips.gozerrors_linux_mips64.gozerrors_linux_mips64le.gozerrors_linux_mipsle.gozerrors_linux_ppc64.gozerrors_linux_ppc64le.gozerrors_linux_riscv64.gozerrors_linux_s390x.gozerrors_linux_sparc64.gozsyscall_darwin_386.1_11.gozsyscall_darwin_386.gozsyscall_darwin_386.szsyscall_darwin_amd64.1_11.gozsyscall_darwin_amd64.gozsyscall_darwin_amd64.szsyscall_darwin_arm.1_11.gozsyscall_darwin_arm.gozsyscall_darwin_arm64.1_11.gozsyscall_darwin_arm64.gozsyscall_darwin_arm64.szsysnum_linux_mips.gozsysnum_linux_mips64.gozsysnum_linux_mips64le.gozsysnum_linux_mipsle.goztypes_freebsd_arm64.goztypes_linux_386.goztypes_linux_amd64.goztypes_linux_arm.goztypes_linux_arm64.goztypes_linux_mips.goztypes_linux_mips64.goztypes_linux_mips64le.goztypes_linux_mipsle.goztypes_linux_ppc64.goztypes_linux_ppc64le.goztypes_linux_riscv64.goztypes_linux_s390x.goztypes_linux_sparc64.go
windows
11
vendor/github.com/RoaringBitmap/roaring/clz.go
generated
vendored
Normal file
11
vendor/github.com/RoaringBitmap/roaring/clz.go
generated
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
// +build go1.9
|
||||
// "go1.9", from Go version 1.9 onward
|
||||
// See https://golang.org/pkg/go/build/#hdr-Build_Constraints
|
||||
|
||||
package roaring
|
||||
|
||||
import "math/bits"
|
||||
|
||||
func countLeadingZeros(x uint64) int {
|
||||
return bits.LeadingZeros64(x)
|
||||
}
|
Reference in New Issue
Block a user