func sync/atomic.AddInt64
7 uses
sync/atomic (current package)
doc.go#L129: func AddInt64(addr *int64, delta int64) (new int64)
type.go#L112: func (x *Int64) Add(delta int64) (new int64) { return AddInt64(&x.v, delta) }
github.com/gotd/td/internal/proto
gzip.go#L123: atomic.AddInt64(&c.read, int64(n))
github.com/gotd/td/internal/proto/codec
full.go#L37: if err := writeFull(w, int(atomic.AddInt64(&i.wSeqNo, 1)-1), b); err != nil {
full.go#L46: if err := readFull(r, int(atomic.AddInt64(&i.rSeqNo, 1)-1), b); err != nil {
go.uber.org/atomic
int64.go#L50: return atomic.AddInt64(&i.v, delta)
int64.go#L55: return atomic.AddInt64(&i.v, -delta)
|
The pages are generated with Golds v0.6.7. (GOOS=linux 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. |