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

  /external/chromium_org/third_party/WebKit/Source/wtf/
ByteOrder.h 46 inline uint16_t bswap16(uint16_t x) { return ((x & 0xff00) >> 8) | ((x & 0x00ff) << 8); } function in namespace:WTF
60 inline uint16_t ntohs(uint16_t x) { return WTF::bswap16(x); }
61 inline uint16_t htons(uint16_t x) { return WTF::bswap16(x); }
  /external/qemu/
bswap.h 52 static inline uint16_t bswap16(uint16_t x) function
71 *s = bswap16(*s);
android-trace_common.h 91 #define bswap16(x) ((((x) & 0xff) << 8) | (((x) >> 8) & 0xff)) macro
112 #define hostToLE16(x) bswap16(x)
115 #define LE16ToHost(x) bswap16(x)
118 #define convert16(x) (x = bswap16(x))
  /frameworks/compile/mclinker/include/mcld/ADT/
SizeTraits.h 114 #ifdef bswap16
115 #undef bswap16 macro
124 /// bswap16 - byte swap 16-bit version
126 inline uint16_t bswap16(uint16_t pData) function in namespace:mcld

Completed in 93 milliseconds