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 36 TEST(MathExtras, ByteSwap_64) {
37 EXPECT_EQ(0x8877665544332211ULL, ByteSwap_64(0x1122334455667788LL));
38 EXPECT_EQ(0x1100FFEEDDCCBBAAULL, ByteSwap_64(0xAABBCCDDEEFF0011LL));
  /external/llvm/include/llvm/Support/
MathExtras.h 154 /// ByteSwap_64 - This function returns a byte-swapped representation of the
156 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 643 milliseconds