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

  /external/qemu/
bswap.h 57 static inline uint32_t bswap32(uint32_t x) function
76 *s = bswap32(*s);
237 return bswap32(value) >> (32 - 8 * len);
android-trace_common.h 93 #define bswap32(x) ((((x) & 0xff) << 24) | (((x) & 0xff00) << 8) \ macro
113 #define hostToLE32(x) bswap32(x)
116 #define LE32ToHost(x) bswap32(x)
119 #define convert32(x) (x = bswap32(x))
  /frameworks/compile/mclinker/include/mcld/ADT/
SizeTraits.h 117 #ifdef bswap32
118 #undef bswap32 macro
131 /// bswap32 - byte swap 32-bit version
133 inline uint32_t bswap32(uint32_t pData) function in namespace:mcld

Completed in 46 milliseconds