func runtime/internal/atomic.Loaduintptr

18 uses

	runtime/internal/atomic (current package)
		stubs.go#L36: func Loaduintptr(ptr *uintptr) uintptr
		types.go#L359: 	return Loaduintptr(&u.value)

	runtime
		debuglog.go#L65: 		all := (*dlogger)(unsafe.Pointer(atomic.Loaduintptr(allp)))
		debuglog.go#L88: 			head := atomic.Loaduintptr(headp)
		debuglog.go#L706: 	all := (*dlogger)(unsafe.Pointer(atomic.Loaduintptr(allp)))
		malloc.go#L1547: 	chunk := atomic.Loaduintptr((*uintptr)(unsafe.Pointer(&persistentChunks)))
		mheap.go#L1028: 		zeroedBase := atomic.Loaduintptr(&ha.zeroedBase)
		mheap.go#L1058: 			zeroedBase = atomic.Loaduintptr(&ha.zeroedBase)
		mheap.go#L2126: 	if b == nil || atomic.Loaduintptr(&b.free)+bytes > uintptr(len(b.bits)) {
		proc.go#L592: 	length := atomic.Loaduintptr(&allglen)
		proc.go#L4860: 	n := int32(atomic.Loaduintptr(&allglen)) - sched.gFree.n - sched.ngsys.Load()
		proc.go#L6176: 		runnext := atomic.Loaduintptr((*uintptr)(unsafe.Pointer(&pp.runnext)))
		signal_unix.go#L160: 		if atomic.Loaduintptr(&fwdSig[sig]) == _SIG_IGN {
		signal_unix.go#L235: 			setsig(sig, atomic.Loaduintptr(&fwdSig[sig]))
		signal_unix.go#L319: 				h := atomic.Loaduintptr(&fwdSig[_SIGPROF])
		signal_unix.go#L939: 		handler = atomic.Loaduintptr(&fwdSig[sig])
		signal_unix.go#L1095: 	fwdFn := atomic.Loaduintptr(&fwdSig[sig])
		stack.go#L1011: 	stackguard0 := atomic.Loaduintptr(&gp.stackguard0)