Home
last modified time | relevance | path

Searched refs:wswap32 (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/wtf/
DByteOrder.h51 inline uint32_t ntohl(uint32_t x) { return WTF::wswap32(x); } in ntohl()
52 inline uint32_t htonl(uint32_t x) { return WTF::wswap32(x); } in htonl()
DByteSwap.h45 inline uint32_t wswap32(uint32_t x) { return ((x & 0xffff0000) >> 16) | ((x & 0x0000ffff) << 16); } in wswap32() function