Searched refs:byteswap (Results 1 – 9 of 9) sorted by relevance
20 std::byteswap(t);30 assert(std::byteswap(in) == expected); in test_num()31 ASSERT_SAME_TYPE(decltype(std::byteswap(in)), decltype(in)); in test_num()32 ASSERT_NOEXCEPT(std::byteswap(in)); in test_num()
27 _LIBCPP_HIDE_FROM_ABI constexpr _Tp byteswap(_Tp __val) noexcept { in byteswap() function42 return static_cast<_Tp>(byteswap(static_cast<uint64_t>(__val))) << 64 | in byteswap()43 static_cast<_Tp>(byteswap(static_cast<uint64_t>(__val >> 64))); in byteswap()
21 // [bit.byteswap], byteswap23 constexpr T byteswap(T value) noexcept; // C++2366 #include <__bit/byteswap.h>
195 __bit/byteswap.h
462 module byteswap { private header "__bit/byteswap.h" }
3 ; This test is a worst-case scenario for bitreversal/byteswap detection.
84 instruction (add, sub) or intrinsic (byteswap, population count). In other122 a wider size, performs the byteswap, and then shifts the correct bytes right123 to emulate the narrower byteswap in the wider type.
256 "__bit/byteswap.h",