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

  /external/chromium_org/third_party/WebKit/Source/wtf/
ByteOrder.h 45 inline uint32_t bswap32(uint32_t x) { return ((x & 0xff000000) >> 24) | ((x & 0x00ff0000) >> 8) | ((x & 0x0000ff00) << 8) | ((x & 0x000000ff) << 24); } function in namespace:WTF
62 inline uint32_t ntohl(uint32_t x) { return WTF::bswap32(x); }
63 inline uint32_t htonl(uint32_t x) { return WTF::bswap32(x); }
  /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 382 milliseconds