func sync/atomic.StoreInt32
21 uses
sync/atomic (current package)
doc.go#L129: func StoreInt32(addr *int32, val int32)
github.com/evanw/esbuild/pkg/api
api_impl.go#L965: atomic.StoreInt32(&w.shouldStop, 1)
github.com/go-redis/redis/v8
ring.go#L193: atomic.StoreInt32(&shard.down, 0)
go.opencensus.io/stats
measure.go#L64: atomic.StoreInt32(&m.subs, 1)
google.golang.org/grpc/internal/channelz
funcs.go#L53: atomic.StoreInt32(&curState, 1)
funcs.go#L65: atomic.StoreInt32(&maxTraceEntry, i)
funcs.go#L70: atomic.StoreInt32(&maxTraceEntry, defaultMaxTraceEntry)
google.golang.org/grpc/internal/grpcsync
event.go#L41: atomic.StoreInt32(&e.fired, 1)
google.golang.org/protobuf/internal/impl
encode.go#L63: atomic.StoreInt32(p.Apply(mi.sizecacheOffset).Int32(), int32(size))
encode.go#L90: atomic.StoreInt32(p.Apply(mi.sizecacheOffset).Int32(), -1)
encode.go#L92: atomic.StoreInt32(p.Apply(mi.sizecacheOffset).Int32(), int32(size))
internal/poll
fd_unix.go#L494: atomic.StoreInt32(&tryDupCloexec, 0)
net/http
server.go#L527: func (b *atomicBool) setTrue() { atomic.StoreInt32((*int32)(b), 1) }
server.go#L528: func (b *atomicBool) setFalse() { atomic.StoreInt32((*int32)(b), 0) }
server.go#L3124: atomic.StoreInt32(&srv.disableKeepAlives, 0)
server.go#L3127: atomic.StoreInt32(&srv.disableKeepAlives, 1)
runtime/trace
trace.go#L136: atomic.StoreInt32(&tracing.enabled, 1)
trace.go#L145: atomic.StoreInt32(&tracing.enabled, 0)
testing
benchmark.go#L617: atomic.StoreInt32(&b.hasSub, 1)
benchmark.go#L649: atomic.StoreInt32(&sub.hasSub, 1)
testing.go#L1206: atomic.StoreInt32(&t.hasSub, 1)
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |