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#L464: 	buf = pgio.AppendInt16(buf, int16(len(wholeDigits)+len(fracDigits)))
		numeric.go#L475: 	buf = pgio.AppendInt16(buf, weight)
		numeric.go#L477: 	buf = pgio.AppendInt16(buf, sign)
		numeric.go#L483: 	buf = pgio.AppendInt16(buf, dscale)
		numeric.go#L486: 		buf = pgio.AppendInt16(buf, wholeDigits[i])
		numeric.go#L490: 		buf = pgio.AppendInt16(buf, fracDigits[i])