HomeSort by relevance Sort by last modified time
    Searched defs:SwapByteOrder_64 (Results 1 - 2 of 2) sorted by null

  /external/swiftshader/third_party/LLVM/include/llvm/Support/
SwapByteOrder.h 56 /// SwapByteOrder_64 - This function returns a byte-swapped representation of
58 inline uint64_t SwapByteOrder_64(uint64_t value) {
85 inline unsigned long SwapByteOrder(unsigned long C) { return SwapByteOrder_64(C); }
86 inline signed long SwapByteOrder( signed long C) { return SwapByteOrder_64(C); }
92 return SwapByteOrder_64(C);
95 return SwapByteOrder_64(C);
  /external/llvm/include/llvm/Support/
SwapByteOrder.h 55 /// SwapByteOrder_64 - This function returns a byte-swapped representation of
57 inline uint64_t SwapByteOrder_64(uint64_t value) {
83 inline unsigned long getSwappedBytes(unsigned long C) { return SwapByteOrder_64(C); }
84 inline signed long getSwappedBytes( signed long C) { return SwapByteOrder_64(C); }
90 return SwapByteOrder_64(C);
93 return SwapByteOrder_64(C);
112 out.i = SwapByteOrder_64(in.i);

Completed in 56 milliseconds