Searched defs:bswap16 (Results 1 – 2 of 2) sorted by relevance
52 static inline uint16_t bswap16(uint16_t x) in bswap16() function
91 #define bswap16(x) ((((x) & 0xff) << 8) | (((x) >> 8) & 0xff)) macro