/usr/include/bobcat/fswap is in libbobcat-dev 3.19.01-1ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 | #ifndef INCLUDED_FSWAP_
#define INCLUDED_FSWAP_
#include <cstring>
#include <cstdint>
namespace FBB
{
class FSwap
{
template <typename Tp, size_t size>
struct Xch
{
static void fswap(Tp &lhs, Tp &rhs); // 1.f
};
template <typename Tp>
struct Xch<Tp, 1>
{
static void fswap(Tp &lhs, Tp &rhs); // 2.f
};
template <typename Tp>
struct Xch<Tp, 2>
{
static void fswap(Tp &lhs, Tp &rhs); // 3.f
};
template <typename Tp>
struct Xch<Tp, 4>
{
static void fswap(Tp &lhs, Tp &rhs); // 4.f
};
template <typename Tp>
struct Xch<Tp, 8>
{
static void fswap(Tp &lhs, Tp &rhs); // 5.f
};
template <typename SwapType, typename Type>
static void tswap(Type &lhs, Type &rhs); // .f
};
template <typename SwapType, typename Type>
void FSwap::tswap(Type &lhs, Type &rhs)
{
static_assert(sizeof(SwapType) == sizeof(Type),
"BOBCAT DESIGN ERROR: "
"FSwap::tswap(): sizeof(SwapType) != sizeof(Type)");
SwapType tmp = *reinterpret_cast<SwapType *>(&lhs);
*reinterpret_cast<SwapType *>(&lhs) = *reinterpret_cast<SwapType *>(&rhs);
*reinterpret_cast<SwapType *>(&rhs) = tmp;
}
template <typename Tp, size_t size>
void FSwap::Xch<Tp, size>::fswap(Tp &lhs, Tp &rhs)
{
char buffer[size];
memcpy(buffer, &lhs, size);
memcpy(&lhs, &rhs, size);
memcpy(&rhs, buffer, size);
}
template <typename Tp>
inline void FSwap::Xch<Tp, 1>::fswap(Tp &lhs, Tp &rhs)
{
tswap<int8_t>(lhs, rhs);
}
template <typename Tp>
inline void FSwap::Xch<Tp, 2>::fswap(Tp &lhs, Tp &rhs)
{
tswap<int16_t>(lhs, rhs);
}
template <typename Tp>
inline void FSwap::Xch<Tp, 4>::fswap(Tp &lhs, Tp &rhs)
{
tswap<int32_t>(lhs, rhs);
}
template <typename Tp>
inline void FSwap::Xch<Tp, 8>::fswap(Tp &lhs, Tp &rhs)
{
tswap<int64_t>(lhs, rhs);
}
// Free function
template <typename Type>
void fswap(Type &lhs, Type &rhs)
{
FSwap::Xch<Type, sizeof(Type)>::fswap(lhs, rhs);
}
} // FBB
#endif
|