const math.MinInt16

9 uses

	math (current package)
		const.go#L43: 	MinInt16  = -1 << 15

	encoding/gob
		dec_helpers.go#L218: 		if x < math.MinInt16 || math.MaxInt16 < x {
		decode.go#L266: 	if v < math.MinInt16 || math.MaxInt16 < v {

	github.com/jackc/pgtype
		convert.go#L227: 			if srcVal < math.MinInt16 {
		int2.go#L44: 		if value < math.MinInt16 {
		int2.go#L57: 		if value < math.MinInt16 {
		int2.go#L70: 		if value < math.MinInt16 {
		int2.go#L262: 		if src < math.MinInt16 {
		numeric.go#L32: var bigMinInt16 *big.Int = big.NewInt(math.MinInt16)