func sync/atomic.LoadUint64
10 uses
sync/atomic (current package)
doc_64.go#L93: func LoadUint64(addr *uint64) (val uint64)
type.go#L181: func (x *Uint64) Load() uint64 { return LoadUint64(&x.v) }
go.uber.org/atomic
uint64.go#L45: return atomic.LoadUint64(&i.v)
internal/bisect
bisect.go#L766: 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)
fd_mutex.go#L275: return atomic.LoadUint64(&fd.fdmu.state)&mutexClosed != 0
![]() |
The pages are generated with Golds v0.8.4. (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 @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |