func sync/atomic.AddUint32
12 uses
sync/atomic (current package)
doc.go#L97: func AddUint32(addr *uint32, delta uint32) (new uint32)
github.com/go-redis/redis/v8
cluster.go#L315: return atomic.AddUint32(&c._generation, 1)
github.com/go-redis/redis/v8/internal/pool
pool.go#L182: if atomic.AddUint32(&p.dialErrorsNum, 1) == uint32(p.opt.PoolSize) {
pool.go#L250: atomic.AddUint32(&p.stats.Hits, 1)
pool.go#L254: atomic.AddUint32(&p.stats.Misses, 1)
pool.go#L300: atomic.AddUint32(&p.stats.Timeouts, 1)
pool.go#L489: atomic.AddUint32(&p.stats.StaleConns, uint32(n))
golang.org/x/crypto/ssh
mux.go#L125: m.chanList.offset = atomic.AddUint32(&globalOff, 1)
google.golang.org/api/transport/grpc
pool.go#L41: i := atomic.AddUint32(&p.idx, 1)
google.golang.org/grpc
server.go#L848: case s.serverWorkerChannels[atomic.AddUint32(&roundRobinCounter, 1)%s.opts.numServerWorkers] <- data:
net
dnsconfig_unix.go#L165: return atomic.AddUint32(&c.soffset, 1) - 1 // return 0 to start
testing
testing.go#L1088: atomic.AddUint32(&numFailed, 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. |