reflect.Value.OverflowInt (method)

9 uses

	reflect (current package)
		value.go#L1409: func (v Value) OverflowInt(x int64) bool {

	encoding/json
		decode.go#L789: 					if err != nil || reflect.Zero(kt).OverflowInt(n) {
		decode.go#L998: 			if err != nil || v.OverflowInt(n) {

	github.com/jackc/pgtype
		convert.go#L294: 					if el.OverflowInt(int64(srcVal)) {

	gopkg.in/yaml.v2
		decode.go#L488: 			if !out.OverflowInt(int64(resolved)) {
		decode.go#L493: 			if !out.OverflowInt(resolved) {
		decode.go#L498: 			if resolved <= math.MaxInt64 && !out.OverflowInt(int64(resolved)) {
		decode.go#L503: 			if resolved <= math.MaxInt64 && !out.OverflowInt(int64(resolved)) {

	vendor/golang.org/x/crypto/cryptobyte
		asn1.go#L266: 		if !s.readASN1Int64(&i) || reflect.ValueOf(out).Elem().OverflowInt(i) {