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

34 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#L473: 				next := (*cleanupBlock)(q.all.Load())
		mgcmark.go#L250: 		for cb := (*cleanupBlock)(gcCleanups.all.Load()); cb != nil; cb = cb.alllink {
		mgcmark_greenteagc.go#L449: 	r := (*spanSPMC)(q.chain.tail.Load())
		mgcmark_greenteagc.go#L454: 		r = (*spanSPMC)(r.prev.Load())
		mgcmark_greenteagc.go#L544: 	r := (*spanSPMC)(q2.chain.tail.Load())
		mgcmark_greenteagc.go#L555: 		r2 := (*spanSPMC)(r.prev.Load())
		mgcmark_greenteagc.go#L639: 	for r := (*spanSPMC)(q.chain.tail.Load()); r != nil; r = (*spanSPMC)(r.prev.Load()) {
		mheap.go#L2672: 		n := (*immortalWeakHandle)(m.Load())
		mheap.go#L2699: 			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#L304: 	return spanSetSpinePointer{s.a.Load()}
		mspanset.go#L420: 	return (*mspan)(p.p.Load())
		tracemap.go#L84: 		n := (*traceMapNode)(m.Load())
		tracemap.go#L110: 			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#L164: 	if root := (*traceMapNode)(t.tab.root.Load()); root != nil {
		tracestack.go#L207: 		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()