reflect.Value.OverflowUint (method)

9 uses

	reflect (current package)
		value.go#L1422: func (v Value) OverflowUint(x uint64) bool {

	encoding/json
		decode.go#L797: 					if err != nil || reflect.Zero(kt).OverflowUint(n) {
		decode.go#L1006: 			if err != nil || v.OverflowUint(n) {

	github.com/jackc/pgtype
		convert.go#L303: 					if el.OverflowUint(uint64(srcVal)) {

	gopkg.in/yaml.v2
		decode.go#L519: 			if resolved >= 0 && !out.OverflowUint(uint64(resolved)) {
		decode.go#L524: 			if resolved >= 0 && !out.OverflowUint(uint64(resolved)) {
		decode.go#L529: 			if !out.OverflowUint(uint64(resolved)) {
		decode.go#L534: 			if resolved <= math.MaxUint64 && !out.OverflowUint(uint64(resolved)) {

	vendor/golang.org/x/crypto/cryptobyte
		asn1.go#L273: 		if !s.readASN1Uint64(&u) || reflect.ValueOf(out).Elem().OverflowUint(u) {