HomeSort by relevance Sort by last modified time
    Searched refs:ByteSwap_64 (Results 1 - 5 of 5) 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/lldb/source/Core/
DataEncoder.cpp 55 *(uint64_t *)(ptr + offset) = llvm::ByteSwap_64(value);
DataExtractor.cpp 93 return llvm::ByteSwap_64(*(uint64_t *)(ptr + offset));
110 return llvm::ByteSwap_64(*(uint64_t *)(ptr));
    [all...]
  /external/llvm/include/llvm/Support/
MathExtras.h 385 /// ByteSwap_64 - This function returns a byte-swapped representation of the
387 inline uint64_t ByteSwap_64(uint64_t Value) {
  /external/llvm/lib/Support/
APInt.cpp 792 return APInt(BitWidth, ByteSwap_64(VAL));
796 Result.pVal[I] = ByteSwap_64(pVal[N - I - 1]);
    [all...]

Completed in 177 milliseconds