func runtime/internal/sys.TrailingZeros64
12 uses
runtime/internal/sys (current package)
intrinsics_common.go#L111: func TrailingZeros64(x uint64) int {
runtime
mpagecache.go#L43: i := uintptr(sys.TrailingZeros64(c.cache))
mpallocbits.go#L134: t := uint(sys.TrailingZeros64(x))
mpallocbits.go#L172: x >>= sys.TrailingZeros64(x) & 63
mpallocbits.go#L204: j := uint(sys.TrailingZeros64(^x)) // count contiguous trailing ones
mpallocbits.go#L206: j = uint(sys.TrailingZeros64(x)) // count contiguous trailing zeros
mpallocbits.go#L248: return i*64 + uint(sys.TrailingZeros64(^x))
mpallocbits.go#L276: newSearchIdx = i*64 + uint(sys.TrailingZeros64(^bi))
mpallocbits.go#L278: start := uint(sys.TrailingZeros64(bi))
mpallocbits.go#L313: newSearchIdx = i*64 + uint(sys.TrailingZeros64(^x))
mpallocbits.go#L320: s := uint(sys.TrailingZeros64(x))
mpallocbits.go#L399: return uint(sys.TrailingZeros64(c))
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin 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 @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |