type runtime.puintptr

11 uses

	runtime (current package)
		runtime2.go#L280: type puintptr uintptr
		runtime2.go#L283: func (pp puintptr) ptr() *p { return (*p)(unsafe.Pointer(pp)) }
		runtime2.go#L286: func (pp *puintptr) set(p *p) { *pp = puintptr(unsafe.Pointer(p)) }
		runtime2.go#L457: 	tracelastp     puintptr // last P emitted an event for this goroutine
		runtime2.go#L500: 	p             puintptr // attached p for executing go code (nil if not executing go code)
		runtime2.go#L501: 	nextp         puintptr
		runtime2.go#L502: 	oldp          puintptr // the p that was attached before executing a syscall
		runtime2.go#L579: 	link        puintptr
		runtime2.go#L740: 	pidle      puintptr // idle p's
		time.go#L21: 	pp puintptr