func sync/atomic.StoreUint32

10 uses

	sync/atomic (current package)
		doc.go#L135: func StoreUint32(addr *uint32, val uint32)

	sync
		once.go#L67: 		defer atomic.StoreUint32(&o.done, 1)

	crypto/tls
		conn.go#L1192: 	atomic.StoreUint32(&c.handshakeStatus, 0)
		handshake_client.go#L443: 	atomic.StoreUint32(&c.handshakeStatus, 1)
		handshake_client_tls13.go#L101: 	atomic.StoreUint32(&c.handshakeStatus, 1)
		handshake_server.go#L121: 	atomic.StoreUint32(&c.handshakeStatus, 1)
		handshake_server_tls13.go#L78: 	atomic.StoreUint32(&c.handshakeStatus, 1)

	hash/crc32
		crc32.go#L99: 	atomic.StoreUint32(&haveCastagnoli, 1)

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

	os
		exec.go#L35: 	atomic.StoreUint32(&p.isdone, 1)