func internal/runtime/atomic.CasRel

6 uses

	internal/runtime/atomic (current package)
		atomic_amd64.go#L111: func CasRel(ptr *uint32, old, new uint32) bool
		types.go#L250: 	return CasRel(&u.value, old, new)

	runtime
		proc.go#L6755: 	if !atomic.CasRel(&pp.runqhead, h, h+n) { // cas-release, commits consume
		proc.go#L6837: 		if atomic.CasRel(&pp.runqhead, h, h+1) { // cas-release, commits consume
		proc.go#L6863: 	if !atomic.CasRel(&pp.runqhead, h, h+qn) { // cas-release, commits consume
		proc.go#L6932: 		if atomic.CasRel(&pp.runqhead, h, h+n) { // cas-release, commits consume