type sync/atomic.Uint64

17 uses

	sync/atomic (current package)
		type.go#L162: type Uint64 struct {
		type.go#L169: func (x *Uint64) Load() uint64 { return LoadUint64(&x.v) }
		type.go#L172: func (x *Uint64) Store(val uint64) { StoreUint64(&x.v, val) }
		type.go#L175: func (x *Uint64) Swap(new uint64) (old uint64) { return SwapUint64(&x.v, new) }
		type.go#L178: func (x *Uint64) CompareAndSwap(old, new uint64) (swapped bool) {
		type.go#L183: func (x *Uint64) Add(delta uint64) (new uint64) { return AddUint64(&x.v, delta) }
		type.go#L187: func (x *Uint64) And(mask uint64) (old uint64) { return AndUint64(&x.v, mask) }
		type.go#L191: func (x *Uint64) Or(mask uint64) (old uint64) { return OrUint64(&x.v, mask) }

	sync
		poolqueue.go#L34: 	headTail atomic.Uint64
		waitgroup.go#L28: 	state atomic.Uint64 // high 32 bits are counter, low 32 bits are waiter count.

	expvar
		expvar.go#L80: 	f atomic.Uint64

	go.uber.org/zap/zapcore
		sampler.go#L35: 	counter atomic.Uint64

	internal/godebug
		godebug.go#L70: 	nonDefault     atomic.Uint64

	net/http
		server.go#L299: 	curState atomic.Uint64 // packed (unixtime<<8|uint8(ConnState))

	os
		exec.go#L88: 	state atomic.Uint64

	testing
		benchmark.go#L895: 	globalN *atomic.Uint64 // shared between all worker goroutines iteration counter
		benchmark.go#L950: 	var n atomic.Uint64