func runtime/internal/atomic.Store64

8 uses

	runtime/internal/atomic (current package)
		atomic_amd64.go#L102: func Store64(ptr *uint64, val uint64)
		types.go#L316: 	Store64(&u.value, value)

	runtime
		mgc.go#L1021: 	atomic.Store64(&memstats.last_gc_unix, uint64(unixNow)) // must be Unix time to make sense to user
		mgc.go#L1022: 	atomic.Store64(&memstats.last_gc_nanotime, uint64(now)) // monotonic time for us
		mprof.go#L477: 	atomic.Store64(&blockprofilerate, uint64(r))
		mprof.go#L546: 	atomic.Store64(&mutexprofilerate, uint64(rate))
		profbuf.go#L121: 	atomic.Store64((*uint64)(x), uint64(new))
		runtime1.go#L124: 	atomic.Store64(&test_z64, (1<<40)+1)