func go/constant.Int64Val

7 uses

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

	go/types
		const.go#L90: 		if x, ok := constant.Int64Val(x); ok {
		expr.go#L1192: 		if v, ok := constant.Int64Val(x); ok {
		index.go#L367: 	v, ok := constant.Int64Val(x.val)
		stmt.go#L205: 		if x, ok := constant.Int64Val(val); ok {
		typexpr.go#L537: 				if n, ok := constant.Int64Val(val); ok && n >= 0 {

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