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

  /external/llvm/unittests/Support/
SwapByteOrderTest.cpp 11 #include "llvm/Support/SwapByteOrder.h"
23 TEST(SwapByteOrder, UnsignedRoundTrip) {
30 sys::SwapByteOrder(sys::SwapByteOrder(origional_uint8)));
34 sys::SwapByteOrder(sys::SwapByteOrder(origional_uint16)));
38 sys::SwapByteOrder(sys::SwapByteOrder(origional_uint32)));
42 sys::SwapByteOrder(sys::SwapByteOrder(origional_uint64)))
    [all...]
  /external/llvm/include/llvm/Support/
SwapByteOrder.h 1 //===- SwapByteOrder.h - Generic and optimized byte swaps -------*- C++ -*-===//
71 inline unsigned char SwapByteOrder(unsigned char C) { return C; }
72 inline signed char SwapByteOrder(signed char C) { return C; }
73 inline char SwapByteOrder(char C) { return C; }
75 inline unsigned short SwapByteOrder(unsigned short C) { return SwapByteOrder_16(C); }
76 inline signed short SwapByteOrder( signed short C) { return SwapByteOrder_16(C); }
78 inline unsigned int SwapByteOrder(unsigned int C) { return SwapByteOrder_32(C); }
79 inline signed int SwapByteOrder( signed int C) { return SwapByteOrder_32(C); }
82 inline unsigned long SwapByteOrder(unsigned long C) { return SwapByteOrder_32(C); }
83 inline signed long SwapByteOrder( signed long C) { return SwapByteOrder_32(C);
    [all...]
Endian.h 19 #include "llvm/Support/SwapByteOrder.h"
41 return sys::SwapByteOrder(value);
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldImpl.h 28 #include "llvm/Support/SwapByteOrder.h"
212 Value = sys::SwapByteOrder(Value);
219 Value = sys::SwapByteOrder(Value);
228 Value = sys::SwapByteOrder(Value);
  /external/llvm/lib/Object/
MachOUniversal.cpp 27 Value = sys::SwapByteOrder(Value);
MachOObjectFile.cpp 46 Value = sys::SwapByteOrder(Value);
    [all...]
  /external/llvm/lib/Support/
DataExtractor.cpp 13 #include "llvm/Support/SwapByteOrder.h"
24 val = sys::SwapByteOrder(val);
  /external/llvm/include/llvm/ADT/
Hashing.h 51 #include "llvm/Support/SwapByteOrder.h"
155 return sys::SwapByteOrder(result);
163 return sys::SwapByteOrder(result);

Completed in 770 milliseconds