const math.MaxInt32

22 uses

	math (current package)
		const.go#L44: 	MaxInt32  = 1<<31 - 1
		logb.go#L38: 		return MaxInt32
		logb.go#L40: 		return MaxInt32

	math/big
		float.go#L97: 	MaxExp  = math.MaxInt32  // largest supported exponent

	compress/flate
		deflate.go#L57: 	skipNever = math.MaxInt32
		deflate.go#L132: 			d.blockStart = math.MaxInt32
		deflatefast.go#L23: 	bufferReset = math.MaxInt32 - maxStoreBlockSize*2
		huffman_code.go#L57: func maxNode() literalNode { return literalNode{math.MaxUint16, math.MaxInt32} }
		huffman_code.go#L170: 			levels[level].nextPairFreq = math.MaxInt32
		huffman_code.go#L180: 		if l.nextPairFreq == math.MaxInt32 && l.nextCharFreq == math.MaxInt32 {
		huffman_code.go#L186: 			levels[level+1].nextPairFreq = math.MaxInt32

	encoding/asn1
		asn1.go#L327: 			if ret64 > math.MaxInt32 {

	encoding/gob
		dec_helpers.go#L245: 		if x < math.MinInt32 || math.MaxInt32 < x {
		decode.go#L284: 	if v < math.MinInt32 || math.MaxInt32 < v {

	net/http
		h2_bundle.go#L7288: 		int64(cc.nextStreamID)+2*int64(cc.pendingRequests) < math.MaxInt32 &&
		h2_bundle.go#L8863: 			if s.Val > math.MaxInt32 {
		h2_bundle.go#L9926: 		ws.writeThrottleLimit = math.MaxInt32
		h2_bundle.go#L10256: 		limit := int32(math.MaxInt32)
		h2_bundle.go#L10271: 				ws.writeThrottleLimit = math.MaxInt32
		h2_bundle.go#L10362: 		if wr, ok := q.consume(math.MaxInt32); ok {

	vendor/golang.org/x/net/idna
		punycode.go#L77: 			if w >= math.MaxInt32/base {