type sync/atomic.Int32

20 uses

	sync/atomic (current package)
		type.go#L68: type Int32 struct {
		type.go#L74: func (x *Int32) Load() int32 { return LoadInt32(&x.v) }
		type.go#L77: func (x *Int32) Store(val int32) { StoreInt32(&x.v, val) }
		type.go#L80: func (x *Int32) Swap(new int32) (old int32) { return SwapInt32(&x.v, new) }
		type.go#L83: func (x *Int32) CompareAndSwap(old, new int32) (swapped bool) {
		type.go#L88: func (x *Int32) Add(delta int32) (new int32) { return AddInt32(&x.v, delta) }
		type.go#L92: func (x *Int32) And(mask int32) (old int32) { return AndInt32(&x.v, mask) }
		type.go#L96: func (x *Int32) Or(mask int32) (old int32) { return OrInt32(&x.v, mask) }

	sync
		rwmutex.go#L43: 	readerCount atomic.Int32 // number of pending readers
		rwmutex.go#L44: 	readerWait  atomic.Int32 // number of departing readers

	context
		context.go#L365: var goroutines atomic.Int32

	crypto/tls
		conn.go#L123: 	activeCall atomic.Int32

	go.uber.org/zap
		level.go#L72: 	l *atomic.Int32
		level.go#L80: 	lvl := AtomicLevel{l: new(atomic.Int32)}
		level.go#L136: 		lvl.l = &atomic.Int32{}

	golang.org/x/tools/go/packages
		packages.go#L683: 	unfinishedSuccs atomic.Int32     // number of direct imports not yet loaded

	google.golang.org/grpc/mem
		buffers.go#L65: 	refObjectPool    = sync.Pool{New: func() any { return new(atomic.Int32) }}
		buffers.go#L78: 	refs     *atomic.Int32
		buffers.go#L106: 	b.refs = refObjectPool.Get().(*atomic.Int32)

	log
		log.go#L62: 	flag      atomic.Int32           // properties