Searched defs:bswap32 (Results 1 - 2 of 2) sorted by relevance

/external/qemu/
H A Dbswap.h57 static inline uint32_t bswap32(uint32_t x) function
76 *s = bswap32(*s);
237 return bswap32(value) >> (32 - 8 * len);
H A Dandroid-trace_common.h93 #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))

Completed in 80 milliseconds