type runtime.guintptr

25 uses

	runtime (current package)
		mgc.go#L1869: 	gp guintptr
		proc.go#L1706: 	g   guintptr
		proc.go#L1905: 	gp.sched.g = guintptr(unsafe.Pointer(gp))
		proc.go#L3452: 	_g_.sched.g = guintptr(unsafe.Pointer(_g_))
		proc.go#L4066: 	newg.sched.g = guintptr(unsafe.Pointer(newg))
		proc.go#L5747: 		if !_p_.runnext.cas(oldnext, guintptr(unsafe.Pointer(gp))) {
		proc.go#L5880: func runqgrab(_p_ *p, batch *[256]guintptr, batchHead uint32, stealRunNextG bool) uint32 {
		proc.go#L5957: 	head guintptr
		proc.go#L5958: 	tail guintptr
		proc.go#L6024: 	head guintptr
		runtime2.go#L259: type guintptr uintptr
		runtime2.go#L262: func (gp guintptr) ptr() *g { return (*g)(unsafe.Pointer(gp)) }
		runtime2.go#L265: func (gp *guintptr) set(g *g) { *gp = guintptr(unsafe.Pointer(g)) }
		runtime2.go#L268: func (gp *guintptr) cas(old, new guintptr) bool {
		runtime2.go#L277: 	(*guintptr)(unsafe.Pointer(gp)).set(new)
		runtime2.go#L328: 	g    guintptr
		runtime2.go#L427: 	schedlink    guintptr
		runtime2.go#L499: 	caughtsig     guintptr // goroutine running during fatal signal
		runtime2.go#L527: 	lockedg       guintptr
		runtime2.go#L552: 	libcallg  guintptr
		runtime2.go#L598: 	runq     [256]guintptr
		runtime2.go#L608: 	runnext guintptr
		trace.go#L127: 	reader        guintptr        // goroutine that called ReadTrace, or nil