func go/constant.MakeInt64
14 uses
go/constant (current package)
value.go#L387: func MakeInt64(x int64) Value { return int64Val(x) }
value.go#L444: return MakeInt64(int64(code))
go/types
builtins.go#L166: val = constant.MakeInt64(int64(len(constant.StringVal(x.val))))
builtins.go#L181: val = constant.MakeInt64(t.len)
builtins.go#L643: x.val = constant.MakeInt64(check.conf.alignof(x.typ))
builtins.go#L707: x.val = constant.MakeInt64(check.conf.offsetof(base, index))
builtins.go#L726: x.val = constant.MakeInt64(check.conf.sizeof(x.typ))
decl.go#L823: obj := NewConst(name.Pos(), pkg, name.Name, nil, constant.MakeInt64(int64(d.iota)))
resolver.go#L341: obj := NewConst(name.Pos(), pkg, name.Name, nil, constant.MakeInt64(int64(d.iota)))
universe.go#L129: {"iota", UntypedInt, constant.MakeInt64(0)},
golang.org/x/tools/internal/gcimporter
bimport.go#L762: return constant.MakeInt64(p.int64())
bimport.go#L782: return constant.MakeInt64(0)
bimport.go#L812: d := constant.Shift(constant.MakeInt64(1), token.SHL, uint(-exp))
golang.org/x/tools/internal/pkgbits
decoder.go#L449: return constant.MakeInt64(r.Int64())