reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Support/APInt.cpp
  686     return APInt(BitWidth, ByteSwap_64(U.VAL));
  690     Result.U.pVal[I] = ByteSwap_64(U.pVal[N - I - 1]);
tools/lldb/include/lldb/Core/Opcode.h
  146       return GetEndianSwap() ? llvm::ByteSwap_64(m_data.inst64) : m_data.inst64;
tools/lldb/source/Core/Opcode.cpp
  121         *(uint32_t *)swap_buf = llvm::ByteSwap_64(m_data.inst64);
tools/lldb/source/Utility/DataExtractor.cpp
   87   return llvm::ByteSwap_64(value);
  105   return llvm::ByteSwap_64(value);
unittests/Support/MathExtrasTest.cpp
  231   EXPECT_EQ(0x8877665544332211ULL, ByteSwap_64(0x1122334455667788LL));
  232   EXPECT_EQ(0x1100FFEEDDCCBBAAULL, ByteSwap_64(0xAABBCCDDEEFF0011LL));