Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DSwapByteOrder.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()
147 out.i = ByteSwap_64(in.i); in getSwappedBytes()
/llvm-project-15.0.7/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()
/llvm-project-15.0.7/compiler-rt/lib/orc/unittests/
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()
/llvm-project-15.0.7/llvm/unittests/Support/
H A DSwapByteOrderTest.cpp25 EXPECT_EQ(0x8877665544332211ULL, ByteSwap_64(0x1122334455667788LL)); in TEST()
26 EXPECT_EQ(0x1100FFEEDDCCBBAAULL, ByteSwap_64(0xAABBCCDDEEFF0011LL)); in TEST()
/llvm-project-15.0.7/lldb/source/Core/
H A DOpcode.cpp121 *(uint32_t *)swap_buf = llvm::ByteSwap_64(m_data.inst64); in GetData()
/llvm-project-15.0.7/lldb/include/lldb/Core/
H A DOpcode.h146 return GetEndianSwap() ? llvm::ByteSwap_64(m_data.inst64) : m_data.inst64;
/llvm-project-15.0.7/lldb/source/Utility/
H A DDataExtractor.cpp87 return llvm::ByteSwap_64(value); in ReadSwapInt64()
105 return llvm::ByteSwap_64(value); in ReadSwapInt64()
/llvm-project-15.0.7/lld/COFF/
H A DDebugTypes.cpp982 ByteSwap_64(*reinterpret_cast<uint64_t *>(&ghash)) % tableSize; in insert()
/llvm-project-15.0.7/llvm/lib/Support/
H A DAPInt.cpp714 uint64_t Tmp1 = ByteSwap_64(U.VAL); in byteSwap()
721 Result.U.pVal[I] = ByteSwap_64(U.pVal[N - I - 1]); in byteSwap()