runtime.mheap.allArenas (field)

19 uses

	runtime (current package)
		malloc.go#L757: 		if len(h.allArenas) == cap(h.allArenas) {
		malloc.go#L758: 			size := 2 * uintptr(cap(h.allArenas)) * sys.PtrSize
		malloc.go#L766: 			oldSlice := h.allArenas
		malloc.go#L767: 			*(*notInHeapSlice)(unsafe.Pointer(&h.allArenas)) = notInHeapSlice{newArray, len(h.allArenas), int(size / sys.PtrSize)}
		malloc.go#L768: 			copy(h.allArenas, oldSlice)
		malloc.go#L774: 		h.allArenas = h.allArenas[:len(h.allArenas)+1]
		malloc.go#L775: 		h.allArenas[len(h.allArenas)-1] = ri
		mcheckmark.go#L40: 	for _, ai := range mheap_.allArenas {
		mgc.go#L2181: 	mheap_.sweepArenas = mheap_.allArenas
		mgc.go#L2242: 	arenas := mheap_.allArenas
		mgcmark.go#L96: 	mheap_.markArenas = mheap_.allArenas[:len(mheap_.allArenas):len(mheap_.allArenas)]
		mheap.go#L180: 	allArenas []arenaIdx