const encoding/gob.tooBig

6 uses

	encoding/gob (current package)
		decode.go#L190: 	if n < 0 || state.b.Len() < n || tooBig <= n {
		decode.go#L620: 	if n < 0 || uint64(n) != u || nBytes > tooBig || (size > 0 && nBytes/size != u) {
		decoder.go#L18: const tooBig = (1 << 30) << (^uint(0) >> 62)
		decoder.go#L86: 	if nbytes >= tooBig {
		encode.go#L72: 	if len(e.data) >= tooBig {
		encoder.go#L71: 	if messageLen >= tooBig {