const math.MinInt32

12 uses

	math (current package)
		const.go#L45: 	MinInt32  = -1 << 31
		logb.go#L36: 		return MinInt32

	math/big
		float.go#L98: 	MinExp  = math.MinInt32  // smallest supported exponent

	contrib.go.opencensus.io/exporter/stackdriver
		trace_proto.go#L288: 	if x < math.MinInt32 {
		trace_proto.go#L289: 		return math.MinInt32

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

	github.com/jackc/pgtype
		convert.go#L234: 			if srcVal < math.MinInt32 {
		int4.go#L49: 		if value < math.MinInt32 {
		int4.go#L62: 		if value < math.MinInt32 {
		int4.go#L254: 		if src < math.MinInt32 {
		numeric.go#L34: var bigMinInt32 *big.Int = big.NewInt(math.MinInt32)