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

  /frameworks/compile/mclinker/include/mcld/ADT/
SizeTraits.h 85 /// bswap64 - byte swap 64-bit version
87 inline uint64_t bswap64(uint64_t pData) function in namespace:mcld
  /external/qemu/
bswap.h 62 static inline uint64_t bswap64(uint64_t x) function
81 *s = bswap64(*s);
android-trace_common.h 96 #define bswap64(x) (((x) << 56) | (((x) & 0xff00) << 40) \ macro
114 #define hostToLE64(x) bswap64(x)
117 #define LE64ToHost(x) bswap64(x)
120 #define convert64(x) (x = bswap64(x))

Completed in 541 milliseconds