Home
last modified time | relevance | path

Searched refs:__bswap16_const (Results 1 – 5 of 5) sorted by relevance

/freebsd-9-stable/sys/amd64/include/
Dendian.h88 #define __bswap16_const(_x) (__uint16_t)((_x) << 8 | (_x) >> 8) macro
110 return (__bswap16_const(_x)); in __bswap16_var()
123 __bswap16_const((__uint16_t)(_x)) : __bswap16_var(_x)))
/freebsd-9-stable/sys/i386/include/
Dendian.h88 #define __bswap16_const(_x) (__uint16_t)((_x) << 8 | (_x) >> 8) macro
110 return (__bswap16_const(_x)); in __bswap16_var()
123 __bswap16_const((__uint16_t)(_x)) : __bswap16_var(_x)))
/freebsd-9-stable/sys/sparc64/include/
Dendian.h72 #define __bswap16_const(x) ((((__uint16_t)(x) >> 8) & 0xff) | \ macro
112 #define __bswap16(x) ((__uint16_t)(__is_constant(x) ? __bswap16_const(x) : \
/freebsd-9-stable/sys/powerpc/include/
Dendian.h87 #define __bswap16_const(x) ((((__uint16_t)(x) >> 8) & 0xff) | \ macro
127 #define __bswap16(x) ((__uint16_t)(__is_constant(x) ? __bswap16_const(x) : \
/freebsd-9-stable/sys/mips/include/
Dendian.h77 #define __bswap16_const(x) (((x) >> 8) | (((x) << 8) & 0xff00)) macro
112 __bswap16_const((__uint16_t)(x)) : __bswap16_var((__uint16_t)(x))))