func internal/runtime/atomic.Loaduintptr

29 uses

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

	runtime
		debuglog.go#L86: 		all := (*dloggerImpl)(unsafe.Pointer(atomic.Loaduintptr(allp)))
		debuglog.go#L109: 			head := atomic.Loaduintptr(headp)
		debuglog.go#L747: 	all := (*dloggerImpl)(unsafe.Pointer(atomic.Loaduintptr(allp)))
		lock_spinbit.go#L148: 	return atomic.Loaduintptr(&l.key)&^mutexMMask != 0
		lock_spinbit.go#L183: 	v := atomic.Loaduintptr(&l.key)
		lock_spinbit.go#L205: 			v = atomic.Loaduintptr(&l.key)
		lock_spinbit.go#L217: 				v = atomic.Loaduintptr(&l.key)
		lock_spinbit.go#L221: 				v = atomic.Loaduintptr(&l.key)
		lock_spinbit.go#L256: 		v = atomic.Loaduintptr(&l.key)
		lock_spinbit.go#L280: 		v := atomic.Loaduintptr(&l.key)
		lock_spinbit.go#L306: 			v = atomic.Loaduintptr(&l.key)
		lock_spinbit.go#L346: 	v := atomic.Loaduintptr(&l.key)
		lock_spinbit.go#L386: 		v = atomic.Loaduintptr(&l.key)
		lock_spinbit.go#L466: 		v = atomic.Loaduintptr(&l.key)
		malloc.go#L2002: 	chunk := atomic.Loaduintptr((*uintptr)(unsafe.Pointer(&persistentChunks)))
		mheap.go#L1077: 		zeroedBase := atomic.Loaduintptr(&ha.zeroedBase)
		mheap.go#L1107: 			zeroedBase = atomic.Loaduintptr(&ha.zeroedBase)
		mheap.go#L2906: 	if b == nil || atomic.Loaduintptr(&b.free)+bytes > uintptr(len(b.bits)) {
		proc.go#L716: 	length := atomic.Loaduintptr(&allglen)
		proc.go#L5555: 	n := int32(atomic.Loaduintptr(&allglen)) - sched.gFree.stack.size - sched.gFree.noStack.size - sched.ngsys.Load()
		proc.go#L7035: 		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#L1060: 	stackguard0 := atomic.Loaduintptr(&gp.stackguard0)