diff options
author | Brent Stapleton <brent.stapleton@ettus.com> | 2019-01-21 11:06:14 -0800 |
---|---|---|
committer | Brent Stapleton <brent.stapleton@ettus.com> | 2019-01-21 14:00:34 -0800 |
commit | 764c5cd8087b560d4ef36679c82f7f8b25a6642b (patch) | |
tree | f099cb7b215efb020b7a37b7de9e2e20cb465b63 /host/include | |
parent | 9e14b1448563416aab1746a186eb63e04c48f480 (diff) | |
download | uhd-764c5cd8087b560d4ef36679c82f7f8b25a6642b.tar.gz uhd-764c5cd8087b560d4ef36679c82f7f8b25a6642b.tar.bz2 uhd-764c5cd8087b560d4ef36679c82f7f8b25a6642b.zip |
lib: transport: convert: apply clang-format
This is a continuation of 967be2a4. Applying clang-format to files
needed for endianness changes.
$ clang-format -i --style=file \
host/include/uhd/types/endianness.hpp \
host/include/uhd/utils/byteswap.hpp \
host/include/uhd/utils/byteswap.ipp
$ clang-format -i --style=file \
host/lib/convert/convert_with_tables.cpp \
host/lib/transport/chdr.cpp
Diffstat (limited to 'host/include')
-rw-r--r-- | host/include/uhd/utils/byteswap.ipp | 170 |
1 files changed, 96 insertions, 74 deletions
diff --git a/host/include/uhd/utils/byteswap.ipp b/host/include/uhd/utils/byteswap.ipp index 6a62f4dff..06d12c746 100644 --- a/host/include/uhd/utils/byteswap.ipp +++ b/host/include/uhd/utils/byteswap.ipp @@ -11,78 +11,96 @@ /*********************************************************************** * Platform-specific implementation details for byteswap below: **********************************************************************/ -#if defined(BOOST_MSVC) //http://msdn.microsoft.com/en-us/library/a3140177%28VS.80%29.aspx - #include <cstdlib> +#if defined( \ + BOOST_MSVC) // http://msdn.microsoft.com/en-us/library/a3140177%28VS.80%29.aspx +# include <cstdlib> - UHD_INLINE uint16_t uhd::byteswap(uint16_t x){ - return _byteswap_ushort(x); - } +UHD_INLINE uint16_t uhd::byteswap(uint16_t x) +{ + return _byteswap_ushort(x); +} - UHD_INLINE uint32_t uhd::byteswap(uint32_t x){ - return _byteswap_ulong(x); - } +UHD_INLINE uint32_t uhd::byteswap(uint32_t x) +{ + return _byteswap_ulong(x); +} - UHD_INLINE uint64_t uhd::byteswap(uint64_t x){ - return _byteswap_uint64(x); - } +UHD_INLINE uint64_t uhd::byteswap(uint64_t x) +{ + return _byteswap_uint64(x); +} #elif defined(__GNUC__) && __GNUC__ >= 4 && __GNUC_MINOR__ >= 3 - UHD_INLINE uint16_t uhd::byteswap(uint16_t x){ - return (x>>8) | (x<<8); //DNE return __builtin_bswap16(x); - } +UHD_INLINE uint16_t uhd::byteswap(uint16_t x) +{ + return (x >> 8) | (x << 8); // DNE return __builtin_bswap16(x); +} - UHD_INLINE uint32_t uhd::byteswap(uint32_t x){ - return __builtin_bswap32(x); - } +UHD_INLINE uint32_t uhd::byteswap(uint32_t x) +{ + return __builtin_bswap32(x); +} - UHD_INLINE uint64_t uhd::byteswap(uint64_t x){ - return __builtin_bswap64(x); - } +UHD_INLINE uint64_t uhd::byteswap(uint64_t x) +{ + return __builtin_bswap64(x); +} #elif defined(UHD_PLATFORM_MACOS) - #include <libkern/OSByteOrder.h> +# include <libkern/OSByteOrder.h> - UHD_INLINE uint16_t uhd::byteswap(uint16_t x){ - return OSSwapInt16(x); - } +UHD_INLINE uint16_t uhd::byteswap(uint16_t x) +{ + return OSSwapInt16(x); +} - UHD_INLINE uint32_t uhd::byteswap(uint32_t x){ - return OSSwapInt32(x); - } +UHD_INLINE uint32_t uhd::byteswap(uint32_t x) +{ + return OSSwapInt32(x); +} - UHD_INLINE uint64_t uhd::byteswap(uint64_t x){ - return OSSwapInt64(x); - } +UHD_INLINE uint64_t uhd::byteswap(uint64_t x) +{ + return OSSwapInt64(x); +} #elif defined(UHD_PLATFORM_LINUX) - #include <byteswap.h> +# include <byteswap.h> - UHD_INLINE uint16_t uhd::byteswap(uint16_t x){ - return bswap_16(x); - } +UHD_INLINE uint16_t uhd::byteswap(uint16_t x) +{ + return bswap_16(x); +} - UHD_INLINE uint32_t uhd::byteswap(uint32_t x){ - return bswap_32(x); - } +UHD_INLINE uint32_t uhd::byteswap(uint32_t x) +{ + return bswap_32(x); +} - UHD_INLINE uint64_t uhd::byteswap(uint64_t x){ - return bswap_64(x); - } +UHD_INLINE uint64_t uhd::byteswap(uint64_t x) +{ + return bswap_64(x); +} -#else //http://www.koders.com/c/fidB93B34CD44F0ECF724F1A4EAE3854BA2FE692F59.aspx +#else // http://www.koders.com/c/fidB93B34CD44F0ECF724F1A4EAE3854BA2FE692F59.aspx - UHD_INLINE uint16_t uhd::byteswap(uint16_t x){ - return (x>>8) | (x<<8); - } +UHD_INLINE uint16_t uhd::byteswap(uint16_t x) +{ + return (x >> 8) | (x << 8); +} - UHD_INLINE uint32_t uhd::byteswap(uint32_t x){ - return (uint32_t(uhd::byteswap(uint16_t(x&0xfffful)))<<16) | (uhd::byteswap(uint16_t(x>>16))); - } +UHD_INLINE uint32_t uhd::byteswap(uint32_t x) +{ + return (uint32_t(uhd::byteswap(uint16_t(x & 0xfffful))) << 16) + | (uhd::byteswap(uint16_t(x >> 16))); +} - UHD_INLINE uint64_t uhd::byteswap(uint64_t x){ - return (uint64_t(uhd::byteswap(uint32_t(x&0xffffffffull)))<<32) | (uhd::byteswap(uint32_t(x>>32))); - } +UHD_INLINE uint64_t uhd::byteswap(uint64_t x) +{ + return (uint64_t(uhd::byteswap(uint32_t(x & 0xffffffffull))) << 32) + | (uhd::byteswap(uint32_t(x >> 32))); +} #endif @@ -93,36 +111,40 @@ namespace uhd { -template<typename T> UHD_INLINE T ntohx(T num){ - #ifdef BOOST_BIG_ENDIAN - return num; - #else - return uhd::byteswap(num); - #endif +template <typename T> UHD_INLINE T ntohx(T num) +{ +#ifdef BOOST_BIG_ENDIAN + return num; +#else + return uhd::byteswap(num); +#endif } -template<typename T> UHD_INLINE T htonx(T num){ - #ifdef BOOST_BIG_ENDIAN - return num; - #else - return uhd::byteswap(num); - #endif +template <typename T> UHD_INLINE T htonx(T num) +{ +#ifdef BOOST_BIG_ENDIAN + return num; +#else + return uhd::byteswap(num); +#endif } -template<typename T> UHD_INLINE T wtohx(T num){ - #ifdef BOOST_BIG_ENDIAN - return uhd::byteswap(num); - #else - return num; - #endif +template <typename T> UHD_INLINE T wtohx(T num) +{ +#ifdef BOOST_BIG_ENDIAN + return uhd::byteswap(num); +#else + return num; +#endif } -template<typename T> UHD_INLINE T htowx(T num){ - #ifdef BOOST_BIG_ENDIAN - return uhd::byteswap(num); - #else - return num; - #endif +template <typename T> UHD_INLINE T htowx(T num) +{ +#ifdef BOOST_BIG_ENDIAN + return uhd::byteswap(num); +#else + return num; +#endif } } /* namespace uhd */ |