type sync/atomic.Uint32

12 uses

	sync/atomic (current package)
		type.go#L131: type Uint32 struct {
		type.go#L137: func (x *Uint32) Load() uint32 { return LoadUint32(&x.v) }
		type.go#L140: func (x *Uint32) Store(val uint32) { StoreUint32(&x.v, val) }
		type.go#L143: func (x *Uint32) Swap(new uint32) (old uint32) { return SwapUint32(&x.v, new) }
		type.go#L146: func (x *Uint32) CompareAndSwap(old, new uint32) (swapped bool) {
		type.go#L151: func (x *Uint32) Add(delta uint32) (new uint32) { return AddUint32(&x.v, delta) }
		type.go#L155: func (x *Uint32) And(mask uint32) (old uint32) { return AndUint32(&x.v, mask) }
		type.go#L159: func (x *Uint32) Or(mask uint32) (old uint32) { return OrUint32(&x.v, mask) }

	sync
		once.go#L28: 	done atomic.Uint32

	go/types
		typeparam.go#L15: var lastID atomic.Uint32

	internal/sync
		hashtriemap.go#L22: 	inited   atomic.Uint32

	testing
		testing.go#L514: 	numFailed atomic.Uint32 // number of test failures