func go/constant.Int64Val

8 uses

	go/constant (current package)
		value.go#L495: func Int64Val(x Value) (int64, bool) {

	go/types
		expr.go#L296: 		if x, ok := constant.Int64Val(x); ok {
		expr.go#L1666: 		if v, ok := constant.Int64Val(x); ok {
		index.go#L365: 	v, ok := constant.Int64Val(x.val)
		stmt.go#L207: 		if x, ok := constant.Int64Val(val); ok {
		typexpr.go#L526: 				if n, ok := constant.Int64Val(val); ok && n >= 0 {

	golang.org/x/tools/internal/gcimporter
		bexport.go#L573: 		if v, exact := constant.Int64Val(x); exact {
		iexport.go#L921: 		if i64, exact := constant.Int64Val(v); exact {