internal/runtime/atomic.UnsafePointer.Load (method)

28 uses

	internal/runtime/atomic (current package)
		types.go#L465: func (u *UnsafePointer) Load() unsafe.Pointer {
		types.go#L526: 	return (*T)(p.u.Load())

	runtime
		mcleanup.go#L390: 				next := (*cleanupBlock)(q.all.Load())
		mgcmark.go#L192: 		for cb := (*cleanupBlock)(gcCleanups.all.Load()); cb != nil; cb = cb.alllink {
		mheap.go#L2704: 		n := (*immortalWeakHandle)(m.Load())
		mheap.go#L2731: 			n = (*immortalWeakHandle)(m.Load())
		mprof.go#L276: 	bh := (*buckhashArray)(buckhash.Load())
		mprof.go#L280: 		bh = (*buckhashArray)(buckhash.Load())
		mprof.go#L308: 	for b := (*bucket)(bh[i].Load()); b != nil; b = b.next {
		mprof.go#L320: 	for b := (*bucket)(bh[i].Load()); b != nil; b = b.next {
		mprof.go#L342: 	b.next = (*bucket)(bh[i].Load())
		mprof.go#L343: 	b.allnext = (*bucket)(allnext.Load())
		mprof.go#L404: 	head := (*bucket)(mbuckets.Load())
		mprof.go#L964: 	head := (*bucket)(mbuckets.Load())
		mprof.go#L1041: 	head := (*bucket)(mbuckets.Load())
		mprof.go#L1101: 	head := (*bucket)(bbuckets.Load())
		mprof.go#L1180: 	head := (*bucket)(xbuckets.Load())
		mspanset.go#L291: 	return spanSetSpinePointer{s.a.Load()}
		mspanset.go#L407: 	return (*mspan)(p.p.Load())
		tracemap.go#L77: 		n := (*traceMapNode)(m.Load())
		tracemap.go#L103: 			n = (*traceMapNode)(m.Load())
		traceregion.go#L53: 	block := (*traceRegionAllocBlock)(a.current.Load())
		traceregion.go#L70: 		block = (*traceRegionAllocBlock)(a.current.Load())
		traceregion.go#L113: 	if current := a.current.Load(); current != nil {
		tracestack.go#L161: 	if root := (*traceMapNode)(t.tab.root.Load()); root != nil {
		tracestack.go#L204: 		child := node.children[i].Load()
		tracetype.go#L40: 	if root := (*traceMapNode)(t.tab.root.Load()); root != nil {
		tracetype.go#L76: 		child := node.children[i].Load()