HomeSort by relevance Sort by last modified time
    Searched refs:ByteSwap_64 (Results 1 - 3 of 3) sorted by null

  /external/llvm/unittests/Support/
MathExtrasTest.cpp 139 TEST(MathExtras, ByteSwap_64) {
140 EXPECT_EQ(0x8877665544332211ULL, ByteSwap_64(0x1122334455667788LL));
141 EXPECT_EQ(0x1100FFEEDDCCBBAAULL, ByteSwap_64(0xAABBCCDDEEFF0011LL));
  /external/llvm/include/llvm/Support/
MathExtras.h 375 /// ByteSwap_64 - This function returns a byte-swapped representation of the
377 inline uint64_t ByteSwap_64(uint64_t Value) {
  /external/llvm/lib/Support/
APInt.cpp 791 return APInt(BitWidth, ByteSwap_64(VAL));
795 Result.pVal[I] = ByteSwap_64(pVal[N - I - 1]);
    [all...]

Completed in 462 milliseconds