Searched refs:ByteSwap_64 (Results 1 - 3 of 3) sorted by relevance

/external/llvm/unittests/Support/
H A DMathExtrasTest.cpp139 TEST(MathExtras, ByteSwap_64) {
140 EXPECT_EQ(0x8877665544332211ULL, ByteSwap_64(0x1122334455667788LL));
141 EXPECT_EQ(0x1100FFEEDDCCBBAAULL, ByteSwap_64(0xAABBCCDDEEFF0011LL));
/external/llvm/include/llvm/Support/
H A DMathExtras.h375 /// ByteSwap_64 - This function returns a byte-swapped representation of the
377 inline uint64_t ByteSwap_64(uint64_t Value) { function in namespace:llvm
/external/llvm/lib/Support/
H A DAPInt.cpp791 return APInt(BitWidth, ByteSwap_64(VAL));
795 Result.pVal[I] = ByteSwap_64(pVal[N - I - 1]);

Completed in 168 milliseconds