func runtime/internal/atomic.Casuintptr

7 uses

	runtime/internal/atomic (current package)
		stubs.go#L24: func Casuintptr(ptr *uintptr, old, new uintptr) bool
		types.go#L401: 	return Casuintptr(&u.value, old, new)

	runtime
		debuglog.go#L90: 			if atomic.Casuintptr(headp, head, uintptr(unsafe.Pointer(l))) {
		malloc.go#L1521: 			if atomic.Casuintptr((*uintptr)(unsafe.Pointer(&persistentChunks)), chunks, uintptr(unsafe.Pointer(persistent.base))) {
		mheap.go#L1055: 			if atomic.Casuintptr(&ha.zeroedBase, zeroedBase, arenaLimit) {
		netpoll.go#L518: 	r := atomic.Casuintptr((*uintptr)(gpp), pdWait, uintptr(unsafe.Pointer(gp)))
		runtime2.go#L272: 	return atomic.Casuintptr((*uintptr)(unsafe.Pointer(gp)), uintptr(old), uintptr(new))