func sync/atomic.LoadUint64

11 uses

	sync/atomic (current package)
		doc.go#L120: func LoadUint64(addr *uint64) (val uint64)

	sync
		poolqueue.go#L81: 	ptrs := atomic.LoadUint64(&d.headTail)
		poolqueue.go#L115: 		ptrs := atomic.LoadUint64(&d.headTail)
		poolqueue.go#L150: 		ptrs := atomic.LoadUint64(&d.headTail)
		waitgroup.go#L110: 		state := atomic.LoadUint64(statep)

	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)

	net/http
		server.go#L1775: 	packedState := atomic.LoadUint64(&c.curState.atomic)