From 876d4150aa3da531ddd687b48afada6e43f79146 Mon Sep 17 00:00:00 2001 From: Martin Braun Date: Mon, 2 Mar 2020 15:25:13 -0800 Subject: uhd: Apply clang-format against all .cpp and .hpp files in host/ Note: template_lvbitx.{cpp,hpp} need to be excluded from the list of files that clang-format gets applied against. --- host/lib/convert/convert_item32.cpp | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) (limited to 'host/lib/convert/convert_item32.cpp') diff --git a/host/lib/convert/convert_item32.cpp b/host/lib/convert/convert_item32.cpp index 142a842bb..5d8361079 100644 --- a/host/lib/convert/convert_item32.cpp +++ b/host/lib/convert/convert_item32.cpp @@ -8,23 +8,25 @@ #include "convert_common.hpp" #include -#define __DECLARE_ITEM32_CONVERTER(cpu_type, wire_type, xe, htoxx, xxtoh) \ - DECLARE_CONVERTER(cpu_type, 1, wire_type ## _item32_ ## xe, 1, PRIORITY_GENERAL){ \ - const cpu_type ## _t *input = reinterpret_cast(inputs[0]); \ - item32_t *output = reinterpret_cast(outputs[0]); \ - xx_to_item32_ ## wire_type(input, output, nsamps, scale_factor); \ - } \ - DECLARE_CONVERTER(wire_type ## _item32_ ## xe, 1, cpu_type, 1, PRIORITY_GENERAL){ \ - const item32_t *input = reinterpret_cast(inputs[0]); \ - cpu_type ## _t *output = reinterpret_cast(outputs[0]); \ - item32_ ## wire_type ## _to_xx(input, output, nsamps, scale_factor); \ +#define __DECLARE_ITEM32_CONVERTER(cpu_type, wire_type, xe, htoxx, xxtoh) \ + DECLARE_CONVERTER(cpu_type, 1, wire_type##_item32_##xe, 1, PRIORITY_GENERAL) \ + { \ + const cpu_type##_t* input = reinterpret_cast(inputs[0]); \ + item32_t* output = reinterpret_cast(outputs[0]); \ + xx_to_item32_##wire_type(input, output, nsamps, scale_factor); \ + } \ + DECLARE_CONVERTER(wire_type##_item32_##xe, 1, cpu_type, 1, PRIORITY_GENERAL) \ + { \ + const item32_t* input = reinterpret_cast(inputs[0]); \ + cpu_type##_t* output = reinterpret_cast(outputs[0]); \ + item32_##wire_type##_to_xx(input, output, nsamps, scale_factor); \ } -#define _DECLARE_ITEM32_CONVERTER(cpu_type, wire_type) \ +#define _DECLARE_ITEM32_CONVERTER(cpu_type, wire_type) \ __DECLARE_ITEM32_CONVERTER(cpu_type, wire_type, be, uhd::htonx, uhd::ntohx) \ __DECLARE_ITEM32_CONVERTER(cpu_type, wire_type, le, uhd::htowx, uhd::wtohx) -#define DECLARE_ITEM32_CONVERTER(cpu_type) \ +#define DECLARE_ITEM32_CONVERTER(cpu_type) \ _DECLARE_ITEM32_CONVERTER(cpu_type, sc8) \ _DECLARE_ITEM32_CONVERTER(cpu_type, sc16) -- cgit v1.2.3