func sync/atomic.StoreUint32

5 uses

	sync/atomic (current package)
		doc.go#L205: func StoreUint32(addr *uint32, val uint32)
		type.go#L22: func (x *Bool) Store(val bool) { StoreUint32(&x.v, b32(val)) }
		type.go#L150: func (x *Uint32) Store(val uint32) { StoreUint32(&x.v, val) }

	go.uber.org/atomic
		uint32.go#L82: 	atomic.StoreUint32(&i.v, val)

	internal/poll
		fd_unix.go#L129: 	atomic.StoreUint32(&fd.isBlocking, 1)