OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:wswap32
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/wtf/
ByteOrder.h
51
inline uint32_t ntohl(uint32_t x) { return WTF::
wswap32
(x); }
52
inline uint32_t htonl(uint32_t x) { return WTF::
wswap32
(x); }
ByteSwap.h
45
inline uint32_t
wswap32
(uint32_t x) { return ((x & 0xffff0000) >> 16) | ((x & 0x0000ffff) << 16); }
function in namespace:WTF
Completed in 262 milliseconds