const math.MaxInt16

15 uses

	math (current package)
		const.go#L42: 	MaxInt16  = 1<<15 - 1

	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#L229: 			} else if srcVal > math.MaxInt16 {
		int2.go#L39: 		if value > math.MaxInt16 {
		int2.go#L47: 		if value > math.MaxInt16 {
		int2.go#L52: 		if value > math.MaxInt16 {
		int2.go#L60: 		if value > math.MaxInt16 {
		int2.go#L65: 		if value > math.MaxInt16 {
		int2.go#L73: 		if value > math.MaxInt16 {
		int2.go#L78: 		if value > math.MaxInt16 {
		int2.go#L89: 		if value > math.MaxInt16 {
		int2.go#L94: 		if value > math.MaxInt16 {
		int2.go#L265: 		if src > math.MaxInt16 {
		numeric.go#L31: var bigMaxInt16 *big.Int = big.NewInt(math.MaxInt16)