Searched defs:__bswap_16 (Results 1 – 2 of 2) sorted by relevance
13 # define __bswap_16(x) \ macro19 __bswap_16 (unsigned short int __bsx) in __bswap_16() function
19 #define __bswap_16(x) ((uint16_t) ((((x) >> 8) & 0xff) | (((x) & 0xff) << 8))) macro