func sync/atomic.LoadUint64
35 uses
sync/atomic (current package)
doc.go#L120: func LoadUint64(addr *uint64) (val uint64)
sync
poolqueue.go#L81: ptrs := atomic.LoadUint64(&d.headTail)
poolqueue.go#L115: ptrs := atomic.LoadUint64(&d.headTail)
poolqueue.go#L150: ptrs := atomic.LoadUint64(&d.headTail)
waitgroup.go#L110: state := atomic.LoadUint64(statep)
database/sql
sql.go#L1523: stmt.lastNumClosed = atomic.LoadUint64(&db.numClosed)
sql.go#L2542: dbClosed := atomic.LoadUint64(&s.db.numClosed)
expvar
expvar.go#L74: return math.Float64frombits(atomic.LoadUint64(&v.f))
expvar.go#L79: math.Float64frombits(atomic.LoadUint64(&v.f)), 'g', -1, 64)
expvar.go#L85: cur := atomic.LoadUint64(&v.f)
github.com/go-git/go-git/v5/storage/filesystem/dotgit
writers.go#L180: read := atomic.LoadUint64(&s.read)
writers.go#L222: read := atomic.LoadUint64(&s.read)
writers.go#L223: written := atomic.LoadUint64(&s.written)
github.com/prometheus/client_golang/prometheus
counter.go#L98: oldBits := atomic.LoadUint64(&c.valBits)
counter.go#L111: fval := math.Float64frombits(atomic.LoadUint64(&c.valBits))
counter.go#L112: ival := atomic.LoadUint64(&c.valInt)
gauge.go#L112: oldBits := atomic.LoadUint64(&g.valBits)
gauge.go#L125: val := math.Float64frombits(atomic.LoadUint64(&g.valBits))
histogram.go#L285: oldBits := atomic.LoadUint64(&hotCounts.sumBits)
histogram.go#L316: for count != atomic.LoadUint64(&coldCounts.count) {
histogram.go#L323: SampleSum: proto.Float64(math.Float64frombits(atomic.LoadUint64(&coldCounts.sumBits))),
histogram.go#L327: cumCount += atomic.LoadUint64(&coldCounts.buckets[i])
histogram.go#L341: oldBits := atomic.LoadUint64(&hotCounts.sumBits)
histogram.go#L349: atomic.AddUint64(&hotCounts.buckets[i], atomic.LoadUint64(&coldCounts.buckets[i]))
summary.go#L438: oldBits := atomic.LoadUint64(&hotCounts.sumBits)
summary.go#L469: for count != atomic.LoadUint64(&coldCounts.count) {
summary.go#L475: SampleSum: proto.Float64(math.Float64frombits(atomic.LoadUint64(&coldCounts.sumBits))),
summary.go#L485: oldBits := atomic.LoadUint64(&hotCounts.sumBits)
go.opentelemetry.io/otel/api/metric
number.go#L146: return atomic.LoadUint64(n.AsRawPtr())
internal/poll
fd_mutex.go#L55: old := atomic.LoadUint64(&mu.state)
fd_mutex.go#L73: old := atomic.LoadUint64(&mu.state)
fd_mutex.go#L104: old := atomic.LoadUint64(&mu.state)
fd_mutex.go#L132: old := atomic.LoadUint64(&mu.state)
fd_mutex.go#L177: old := atomic.LoadUint64(&mu.state)
net/http
server.go#L1775: packedState := atomic.LoadUint64(&c.curState.atomic)
![]() |
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. |