func github.com/jackc/pgio.AppendUint16

17 uses

	github.com/jackc/pgio (current package)
		write.go#L5: func AppendUint16(buf []byte, n uint16) []byte {
		write.go#L27: 	return AppendUint16(buf, uint16(n))

	github.com/jackc/pgproto3/v2
		bind.go#L120: 	dst = pgio.AppendUint16(dst, uint16(len(src.ParameterFormatCodes)))
		bind.go#L125: 	dst = pgio.AppendUint16(dst, uint16(len(src.Parameters)))
		bind.go#L136: 	dst = pgio.AppendUint16(dst, uint16(len(src.ResultFormatCodes)))
		copy_both_response.go#L51: 	dst = pgio.AppendUint16(dst, uint16(len(src.ColumnFormatCodes)))
		copy_both_response.go#L53: 		dst = pgio.AppendUint16(dst, fc)
		copy_in_response.go#L52: 	dst = pgio.AppendUint16(dst, uint16(len(src.ColumnFormatCodes)))
		copy_in_response.go#L54: 		dst = pgio.AppendUint16(dst, fc)
		copy_out_response.go#L52: 	dst = pgio.AppendUint16(dst, uint16(len(src.ColumnFormatCodes)))
		copy_out_response.go#L54: 		dst = pgio.AppendUint16(dst, fc)
		data_row.go#L71: 	dst = pgio.AppendUint16(dst, uint16(len(src.Values)))
		parameter_description.go#L47: 	dst = pgio.AppendUint16(dst, uint16(len(src.ParameterOIDs)))
		parse.go#L65: 	dst = pgio.AppendUint16(dst, uint16(len(src.ParameterOIDs)))
		row_description.go#L107: 	dst = pgio.AppendUint16(dst, uint16(len(src.Fields)))
		row_description.go#L113: 		dst = pgio.AppendUint16(dst, fd.TableAttributeNumber)

	github.com/jackc/pgtype
		tid.go#L130: 	buf = pgio.AppendUint16(buf, src.OffsetNumber)