func sync/atomic.LoadUint64

12 uses

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

	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)

	go.uber.org/atomic
		uint64.go#L45: 	return atomic.LoadUint64(&i.v)

	internal/bisect
		bisect.go#L783: 		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)