func sync/atomic.StoreUint64

13 uses

	sync/atomic (current package)
		doc.go#L138: func StoreUint64(addr *uint64, val uint64)

	expvar
		expvar.go#L97: 	atomic.StoreUint64(&v.f, math.Float64bits(value))

	github.com/go-git/go-git/v5/storage/filesystem/dotgit
		writers.go#L237: 	atomic.StoreUint64(&s.read, uint64(p))

	github.com/prometheus/client_golang/prometheus
		gauge.go#L95: 	atomic.StoreUint64(&g.valBits, math.Float64bits(val))
		histogram.go#L339: 	atomic.StoreUint64(&coldCounts.count, 0)
		histogram.go#L344: 			atomic.StoreUint64(&coldCounts.sumBits, 0)
		histogram.go#L350: 		atomic.StoreUint64(&coldCounts.buckets[i], 0)
		summary.go#L483: 	atomic.StoreUint64(&coldCounts.count, 0)
		summary.go#L488: 			atomic.StoreUint64(&coldCounts.sumBits, 0)

	go.opentelemetry.io/otel/api/metric
		number.go#L242: 	atomic.StoreUint64(n.AsRawPtr(), nn.AsRaw())
		number.go#L249: 	atomic.StoreUint64(n.AsRawPtr(), r)
		number.go#L261: 	atomic.StoreUint64(n.AsRawPtr(), internal.Float64ToRaw(f))

	net/http
		server.go#L1765: 	atomic.StoreUint64(&c.curState.atomic, packedState)