func go/constant.MakeInt64

12 uses

	go/constant (current package)
		value.go#L399: func MakeInt64(x int64) Value { return int64Val(x) }
		value.go#L456: 				return MakeInt64(int64(code))

	go/types
		builtins.go#L155: 					val = constant.MakeInt64(int64(len(constant.StringVal(x.val))))
		builtins.go#L170: 					val = constant.MakeInt64(t.len)
		builtins.go#L742: 			x.val = constant.MakeInt64(check.conf.alignof(x.typ))
		builtins.go#L811: 			x.val = constant.MakeInt64(offs)
		builtins.go#L835: 			x.val = constant.MakeInt64(size)
		decl.go#L895: 				obj := NewConst(name.Pos(), pkg, name.Name, nil, constant.MakeInt64(int64(d.iota)))
		range.go#L60: 				val:  constant.MakeInt64(t.len),
		resolver.go#L355: 					obj := NewConst(name.Pos(), pkg, name.Name, nil, constant.MakeInt64(int64(d.iota)))
		universe.go#L159: 	{"iota", UntypedInt, constant.MakeInt64(0)},

	golang.org/x/tools/internal/pkgbits
		decoder.go#L448: 		return constant.MakeInt64(r.Int64())