type sync/atomic.Uint64
16 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
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))
testing
benchmark.go#L910: globalN *atomic.Uint64 // shared between all worker goroutines iteration counter
benchmark.go#L965: var n atomic.Uint64
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)