func go/constant.MakeInt64

11 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#L157: 					val = constant.MakeInt64(int64(len(constant.StringVal(x.val))))
		builtins.go#L172: 					val = constant.MakeInt64(t.len)
		builtins.go#L702: 			x.val = constant.MakeInt64(check.conf.alignof(x.typ))
		builtins.go#L771: 			x.val = constant.MakeInt64(offs)
		builtins.go#L795: 			x.val = constant.MakeInt64(size)
		decl.go#L884: 				obj := NewConst(name.Pos(), pkg, name.Name, nil, constant.MakeInt64(int64(d.iota)))
		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#L453: 		return constant.MakeInt64(r.Int64())