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/
ByteSwap.h 51 ALWAYS_INLINE uint16_t bswap16(uint16_t x) { return _byteswap_ushort(x); } function in namespace:WTF
59 ALWAYS_INLINE uint16_t bswap16(uint16_t x) { return __builtin_bswap16(x); } function in namespace:WTF
61 inline uint16_t bswap16(uint16_t x) { return ((x & 0xff00) >> 8) | ((x & 0x00ff) << 8); } function in namespace:WTF
  /frameworks/compile/mclinker/include/mcld/ADT/
SizeTraits.h 111 #ifdef bswap16
112 #undef bswap16 macro
121 /// bswap16 - byte swap 16-bit version
123 inline uint16_t bswap16(uint16_t pData) function in namespace:mcld
  /external/qemu/include/qemu/
bswap.h 17 static inline uint16_t bswap16(uint16_t x) function
32 static inline uint16_t bswap16(uint16_t x) function
61 *s = bswap16(*s);
  /external/qemu/include/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))

Completed in 214 milliseconds