type internal/runtime/atomic.Uintptr

31 uses

	internal/runtime/atomic (current package)
		types.go#L350: type Uintptr struct {
		types.go#L358: func (u *Uintptr) Load() uintptr {
		types.go#L371: func (u *Uintptr) LoadAcquire() uintptr {
		types.go#L378: func (u *Uintptr) Store(value uintptr) {
		types.go#L391: func (u *Uintptr) StoreRelease(value uintptr) {
		types.go#L400: func (u *Uintptr) CompareAndSwap(old, new uintptr) bool {
		types.go#L408: func (u *Uintptr) Swap(value uintptr) uintptr {
		types.go#L419: func (u *Uintptr) Add(delta uintptr) uintptr {

	runtime
		mgcscavenge.go#L1009: 	min, max   atomic.Uintptr
		mgcscavenge.go#L1010: 	minHeapIdx atomic.Uintptr
		mheap.go#L103: 	pagesInUse         atomic.Uintptr // pages of spans in stats mSpanInUse
		mheap.go#L123: 	reclaimCredit atomic.Uintptr
		mheap.go#L2040: 	handle *atomic.Uintptr
		mheap.go#L2050: 	handle := (*atomic.Uintptr)(u)
		mheap.go#L2142: func getOrAddWeakHandle(p unsafe.Pointer) *atomic.Uintptr {
		mheap.go#L2155: 	handle := new(atomic.Uintptr)
		mheap.go#L2209: func getWeakHandle(p unsafe.Pointer) *atomic.Uintptr {
		mheap.go#L2226: 	var handle *atomic.Uintptr
		mpagealloc.go#L276: 		releasedBg atomic.Uintptr
		mpagealloc.go#L280: 		releasedEager atomic.Uintptr
		mspanset.go#L37: 	spineLen  atomic.Uintptr            // Spine array length
		netpoll.go#L79: 	fdseq atomic.Uintptr // protects against stale pollDesc
		netpoll.go#L100: 	rg atomic.Uintptr // pdReady, pdWait, G waiting for read or pdNil
		netpoll.go#L101: 	wg atomic.Uintptr // pdReady, pdWait, G waiting for write or pdNil
		proc.go#L2604: 	extraM atomic.Uintptr
		runtime.go#L250: var crashFD atomic.Uintptr
		trace.go#L54: 	readerGen     atomic.Uintptr // the generation the reader is currently reading for
		trace.go#L55: 	flushedGen    atomic.Uintptr // the last completed generation
		trace.go#L119: 	gen            atomic.Uintptr
		traceregion.go#L37: 	off  atomic.Uintptr
		traceruntime.go#L27: 	seqlock atomic.Uintptr // seqlock indicating that this M is writing to a trace buffer.