Home
last modified time | relevance | path

Searched refs:ByteSwap_64 (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/compiler-rt/lib/orc/
H A Dendianness.h81 inline uint64_t ByteSwap_64(uint64_t value) { in ByteSwap_64() function
116 : ByteSwap_64((uint64_t)C); in getSwappedBytes()
121 : ByteSwap_64((uint64_t)C); in getSwappedBytes()
125 return ByteSwap_64(C); in getSwappedBytes()
128 return ByteSwap_64(C); in getSwappedBytes()
/freebsd/contrib/llvm-project/compiler-rt/lib/orc/tests/unit/
H A Dendian_test.cpp25 TEST(Endian, ByteSwap_64) { in TEST() argument
26 EXPECT_EQ(0x8877665544332211ULL, ByteSwap_64(0x1122334455667788LL)); in TEST()
27 EXPECT_EQ(0x1100FFEEDDCCBBAAULL, ByteSwap_64(0xAABBCCDDEEFF0011LL)); in TEST()