func internal/runtime/atomic.Loaduintptr

18 uses

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

	runtime
		debuglog.go#L66: 		all := (*dlogger)(unsafe.Pointer(atomic.Loaduintptr(allp)))
		debuglog.go#L89: 			head := atomic.Loaduintptr(headp)
		debuglog.go#L707: 	all := (*dlogger)(unsafe.Pointer(atomic.Loaduintptr(allp)))
		malloc.go#L1642: 	chunk := atomic.Loaduintptr((*uintptr)(unsafe.Pointer(&persistentChunks)))
		mheap.go#L1022: 		zeroedBase := atomic.Loaduintptr(&ha.zeroedBase)
		mheap.go#L1052: 			zeroedBase = atomic.Loaduintptr(&ha.zeroedBase)
		mheap.go#L2381: 	if b == nil || atomic.Loaduintptr(&b.free)+bytes > uintptr(len(b.bits)) {
		proc.go#L680: 	length := atomic.Loaduintptr(&allglen)
		proc.go#L5371: 	n := int32(atomic.Loaduintptr(&allglen)) - sched.gFree.n - sched.ngsys.Load()
		proc.go#L6674: 		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#L996: 		handler = atomic.Loaduintptr(&fwdSig[sig])
		signal_unix.go#L1158: 	fwdFn := atomic.Loaduintptr(&fwdSig[sig])
		stack.go#L1021: 	stackguard0 := atomic.Loaduintptr(&gp.stackguard0)