Searched refs:__bswap16_const (Results 1 – 5 of 5) sorted by relevance
88 #define __bswap16_const(_x) (__uint16_t)((_x) << 8 | (_x) >> 8) macro110 return (__bswap16_const(_x)); in __bswap16_var()123 __bswap16_const((__uint16_t)(_x)) : __bswap16_var(_x)))
72 #define __bswap16_const(x) ((((__uint16_t)(x) >> 8) & 0xff) | \ macro112 #define __bswap16(x) ((__uint16_t)(__is_constant(x) ? __bswap16_const(x) : \
87 #define __bswap16_const(x) ((((__uint16_t)(x) >> 8) & 0xff) | \ macro127 #define __bswap16(x) ((__uint16_t)(__is_constant(x) ? __bswap16_const(x) : \
77 #define __bswap16_const(x) (((x) >> 8) | (((x) << 8) & 0xff00)) macro112 __bswap16_const((__uint16_t)(x)) : __bswap16_var((__uint16_t)(x))))