func sync/atomic.LoadUint64
12 uses
sync/atomic (current package)
doc.go#L158: func LoadUint64(addr *uint64) (val uint64)
type.go#L145: func (x *Uint64) Load() uint64 { return LoadUint64(&x.v) }
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)
go.uber.org/atomic
uint64.go#L45: return atomic.LoadUint64(&i.v)
internal/bisect
bisect.go#L783: if atomic.LoadUint64(&cache[i]) == h {
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)
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. |