func runtime/internal/sys.TrailingZeros64
17 uses
runtime/internal/sys (current package)
intrinsics.go#L53: func TrailingZeros64(x uint64) int {
runtime
malloc.go#L909: theBit := sys.TrailingZeros64(s.allocCache) // Is there a free object in the allocCache?
mbitmap.go#L255: i = sys.TrailingZeros64(uint64(tp.mask))
mbitmap.go#L1076: bitIndex := sys.TrailingZeros64(aCache)
mbitmap.go#L1088: bitIndex = sys.TrailingZeros64(aCache)
mpagecache.go#L42: i := uintptr(sys.TrailingZeros64(c.cache))
mpallocbits.go#L142: t := uint(sys.TrailingZeros64(x))
mpallocbits.go#L177: x >>= sys.TrailingZeros64(x) & 63
mpallocbits.go#L209: j := uint(sys.TrailingZeros64(^x)) // count contiguous trailing ones
mpallocbits.go#L211: j = uint(sys.TrailingZeros64(x)) // count contiguous trailing zeros
mpallocbits.go#L253: return i*64 + uint(sys.TrailingZeros64(^x))
mpallocbits.go#L281: newSearchIdx = i*64 + uint(sys.TrailingZeros64(^bi))
mpallocbits.go#L283: start := uint(sys.TrailingZeros64(bi))
mpallocbits.go#L318: newSearchIdx = i*64 + uint(sys.TrailingZeros64(^x))
mpallocbits.go#L325: s := uint(sys.TrailingZeros64(x))
mpallocbits.go#L409: return uint(sys.TrailingZeros64(c))
slice.go#L226: shift = uintptr(sys.TrailingZeros64(uint64(et.Size_))) & 63
![]() |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |