func sync/atomic.LoadUint64

8 uses

	sync/atomic (current package)
		doc.go#L210: func LoadUint64(addr *uint64) (val uint64)
		type.go#L169: func (x *Uint64) Load() uint64 { return LoadUint64(&x.v) }

	internal/bisect
		bisect.go#L766: 		if atomic.LoadUint64(&cache[i]) == h {

	internal/poll
		fd_mutex.go#L55: 		old := atomic.LoadUint64(&mu.state)
		fd_mutex.go#L73: 		old := atomic.LoadUint64(&mu.state)
		fd_mutex.go#L104: 		old := atomic.LoadUint64(&mu.state)
		fd_mutex.go#L132: 		old := atomic.LoadUint64(&mu.state)
		fd_mutex.go#L177: 		old := atomic.LoadUint64(&mu.state)