func internal/runtime/atomic.Loaduintptr

27 uses

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

	runtime
		debuglog.go#L85: 		all := (*dloggerImpl)(unsafe.Pointer(atomic.Loaduintptr(allp)))
		debuglog.go#L108: 			head := atomic.Loaduintptr(headp)
		debuglog.go#L756: 	all := (*dloggerImpl)(unsafe.Pointer(atomic.Loaduintptr(allp)))
		lock_spinbit.go#L146: 	return atomic.Loaduintptr(&l.key) > mutexLocked
		lock_spinbit.go#L182: 	v := atomic.Loaduintptr(&l.key)
		lock_spinbit.go#L204: 			v = atomic.Loaduintptr(&l.key)
		lock_spinbit.go#L216: 				v = atomic.Loaduintptr(&l.key)
		lock_spinbit.go#L220: 				v = atomic.Loaduintptr(&l.key)
		lock_spinbit.go#L248: 		v = atomic.Loaduintptr(&l.key)
		lock_spinbit.go#L285: 	v := atomic.Loaduintptr(&l.key)
		lock_spinbit.go#L320: 		v = atomic.Loaduintptr(&l.key)
		lock_spinbit.go#L370: 		v = atomic.Loaduintptr(&l.key)
		malloc.go#L1990: 	chunk := atomic.Loaduintptr((*uintptr)(unsafe.Pointer(&persistentChunks)))
		mheap.go#L1030: 		zeroedBase := atomic.Loaduintptr(&ha.zeroedBase)
		mheap.go#L1060: 			zeroedBase = atomic.Loaduintptr(&ha.zeroedBase)
		mheap.go#L2450: 	if b == nil || atomic.Loaduintptr(&b.free)+bytes > uintptr(len(b.bits)) {
		proc.go#L691: 	length := atomic.Loaduintptr(&allglen)
		proc.go#L5435: 	n := int32(atomic.Loaduintptr(&allglen)) - sched.gFree.n - sched.ngsys.Load()
		proc.go#L6740: 		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#L1004: 		handler = atomic.Loaduintptr(&fwdSig[sig])
		signal_unix.go#L1166: 	fwdFn := atomic.Loaduintptr(&fwdSig[sig])
		stack.go#L1011: 	stackguard0 := atomic.Loaduintptr(&gp.stackguard0)