const internal/runtime/math.MaxInt64

7 uses

	internal/runtime/math (current package)
		math.go#L14: 	MaxInt64 = int64(MaxUint64 >> 1)

	internal/runtime/strconv
		atoi.go#L44: 	if !neg && un > uint64(math.MaxInt64) {
		atoi.go#L47: 	if neg && un > uint64(math.MaxInt64)+1 {

	runtime
		malloc.go#L633: 	gcController.memoryLimit.Store(math.MaxInt64)
		malloc.go#L1848: 		return math.MaxInt64
		mgcpacer.go#L1360: 		return math.MaxInt64
		string.go#L473: 	if un > uint64(math.MaxInt64) {