const math.MaxInt32

38 uses

	math (current package)
		const.go#L48: 	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 {

	github.com/kr/text
		wrap.go#L58: 		cost[i] = math.MaxInt32

	go.pact.im/x/clock/fakeclock
		fakeclock.go#L61: 	t := time.Unix(math.MaxInt32, 0)

	golang.org/x/net/http2
		transport.go#L974: 		int64(cc.nextStreamID)+2*int64(cc.pendingRequests) < math.MaxInt32 &&
		transport.go#L2808: 			if s.Val > math.MaxInt32 {
		writesched_priority.go#L79: 		ws.writeThrottleLimit = math.MaxInt32
		writesched_priority.go#L406: 		limit := int32(math.MaxInt32)
		writesched_priority.go#L421: 				ws.writeThrottleLimit = math.MaxInt32
		writesched_random.go#L68: 		if wr, ok := q.consume(math.MaxInt32); ok {

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

	google.golang.org/grpc
		clientconn.go#L97: 	defaultClientMaxSendMessageSize    = math.MaxInt32
		server.go#L59: 	defaultServerMaxSendMessageSize    = math.MaxInt32

	google.golang.org/grpc/internal/transport
		defaults.go#L42: 	maxWindowSize = math.MaxInt32
		defaults.go#L55: var MaxStreamID = uint32(math.MaxInt32 * 3 / 4)
		flowcontrol.go#L146: 	if n > uint32(math.MaxInt32) {
		flowcontrol.go#L147: 		n = uint32(math.MaxInt32)

	google.golang.org/protobuf/encoding/protowire
		wire.go#L507: 	if x>>3 > uint64(math.MaxInt32) {

	google.golang.org/protobuf/internal/encoding/messageset
		messageset.go#L135: 			if v < 1 || v > math.MaxInt32 {

	google.golang.org/protobuf/internal/impl
		encode.go#L87: 		if size > math.MaxInt32 {

	net/http
		h2_bundle.go#L7594: 		int64(cc.nextStreamID)+2*int64(cc.pendingRequests) < math.MaxInt32 &&
		h2_bundle.go#L9409: 			if s.Val > math.MaxInt32 {
		h2_bundle.go#L10413: 		ws.writeThrottleLimit = math.MaxInt32
		h2_bundle.go#L10743: 		limit := int32(math.MaxInt32)
		h2_bundle.go#L10758: 				ws.writeThrottleLimit = math.MaxInt32
		h2_bundle.go#L10849: 		if wr, ok := q.consume(math.MaxInt32); ok {

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