type sync/atomic.Uint64

13 uses

	sync/atomic (current package)
		type.go#L174: type Uint64 struct {
		type.go#L181: func (x *Uint64) Load() uint64 { return LoadUint64(&x.v) }
		type.go#L184: func (x *Uint64) Store(val uint64) { StoreUint64(&x.v, val) }
		type.go#L187: func (x *Uint64) Swap(new uint64) (old uint64) { return SwapUint64(&x.v, new) }
		type.go#L190: func (x *Uint64) CompareAndSwap(old, new uint64) (swapped bool) {
		type.go#L195: func (x *Uint64) Add(delta uint64) (new uint64) { return AddUint64(&x.v, delta) }
		type.go#L199: func (x *Uint64) And(mask uint64) (old uint64) { return AndUint64(&x.v, mask) }
		type.go#L203: func (x *Uint64) Or(mask uint64) (old uint64) { return OrUint64(&x.v, mask) }

	sync
		poolqueue.go#L34: 	headTail atomic.Uint64
		waitgroup.go#L55: 	state atomic.Uint64

	go.opentelemetry.io/otel/attribute
		encoder.go#L56: 	encoderIDCounter atomic.Uint64

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

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