type sync/atomic.Uint64

13 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.

	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