func github.com/jackc/pgx/v5/internal/pgio.AppendInt16

14 uses

	github.com/jackc/pgx/v5/internal/pgio (current package)
		write.go#L18: func AppendInt16(buf []byte, n int16) []byte {

	github.com/jackc/pgx/v5
		copy_from.go#L233: 		buf = pgio.AppendInt16(buf, int16(len(ct.columnNames)))

	github.com/jackc/pgx/v5/pgproto3
		bind.go#L126: 		dst = pgio.AppendInt16(dst, fc)
		bind.go#L148: 		dst = pgio.AppendInt16(dst, fc)
		row_description.go#L117: 		dst = pgio.AppendInt16(dst, fd.DataTypeSize)
		row_description.go#L119: 		dst = pgio.AppendInt16(dst, fd.Format)

	github.com/jackc/pgx/v5/pgtype
		int.go#L159: 	return pgio.AppendInt16(buf, int16(n)), nil
		int.go#L188: 	return pgio.AppendInt16(buf, int16(n.Int64)), nil
		numeric.go#L467: 	buf = pgio.AppendInt16(buf, int16(len(wholeDigits)+len(fracDigits)))
		numeric.go#L478: 	buf = pgio.AppendInt16(buf, weight)
		numeric.go#L480: 	buf = pgio.AppendInt16(buf, sign)
		numeric.go#L486: 	buf = pgio.AppendInt16(buf, dscale)
		numeric.go#L489: 		buf = pgio.AppendInt16(buf, wholeDigits[i])
		numeric.go#L493: 		buf = pgio.AppendInt16(buf, fracDigits[i])