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

24 uses

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

	runtime
		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#L1022: 	head := (*bucket)(mbuckets.Load())
		mprof.go#L1099: 	head := (*bucket)(mbuckets.Load())
		mprof.go#L1159: 	head := (*bucket)(bbuckets.Load())
		mprof.go#L1238: 	head := (*bucket)(xbuckets.Load())
		mspanset.go#L282: 	return spanSetSpinePointer{s.a.Load()}
		mspanset.go#L398: 	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#L66: 	block = (*traceRegionAllocBlock)(a.current.Load())
		traceregion.go#L107: 	if current := a.current.Load(); current != nil {
		tracestack.go#L152: 	if root := (*traceMapNode)(t.tab.root.Load()); root != nil {
		tracestack.go#L195: 		child := node.children[i].Load()
		tracetype.go#L39: 	if root := (*traceMapNode)(t.tab.root.Load()); root != nil {
		tracetype.go#L75: 		child := node.children[i].Load()