const math.MaxInt32

33 uses

	math (current package)
		const.go#L48: 	MaxInt32  = 1<<31 - 1           // 2147483647
		logb.go#L40: 		return MaxInt32
		logb.go#L42: 		return MaxInt32

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

	compress/flate
		deflate.go#L58: 	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#L168: 			levels[level].nextPairFreq = math.MaxInt32
		huffman_code.go#L178: 		if l.nextPairFreq == math.MaxInt32 && l.nextCharFreq == math.MaxInt32 {
		huffman_code.go#L184: 			levels[level+1].nextPairFreq = math.MaxInt32

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

	github.com/go-faster/jx
		dec_int.gen.go#L677: 		if val > math.MaxInt32+1 {
		dec_int.gen.go#L686: 	if val > math.MaxInt32 {

	github.com/klauspost/compress/flate
		deflate.go#L54: 	skipNever = math.MaxInt32
		deflate.go#L141: 			d.blockStart = math.MaxInt32
		huffman_bit_writer.go#L580: 	var size = math.MaxInt32
		huffman_bit_writer.go#L1044: 	if estBits < math.MaxInt32 {
		huffman_code.go#L157: 				return math.MaxInt32
		huffman_code.go#L224: 			levels[level].nextPairFreq = math.MaxInt32
		huffman_code.go#L234: 		if l.nextPairFreq == math.MaxInt32 && l.nextCharFreq == math.MaxInt32 {
		huffman_code.go#L240: 			levels[level+1].nextPairFreq = math.MaxInt32
		huffman_code.go#L256: 				l.nextCharFreq = math.MaxInt32

	net/http
		h2_bundle.go#L8063: 		int64(cc.nextStreamID)+2*int64(cc.pendingRequests) < math.MaxInt32 &&
		h2_bundle.go#L9923: 			if s.Val > math.MaxInt32 {
		h2_bundle.go#L10940: 		ws.writeThrottleLimit = math.MaxInt32
		h2_bundle.go#L11269: 		limit := int32(math.MaxInt32)
		h2_bundle.go#L11284: 				ws.writeThrottleLimit = math.MaxInt32
		h2_bundle.go#L11375: 		if wr, ok := q.consume(math.MaxInt32); ok {
		h2_bundle.go#L11483: 		if wr, ok := q.consume(math.MaxInt32); ok {

	vendor/golang.org/x/net/idna
		punycode.go#L175: 	if p > math.MaxInt32-int64(a) {