Searched refs:__bswap16_const (Results 1 - 3 of 3) sorted by relevance

/freebsd-10.0-release/sys/sparc64/include/
H A 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-10.0-release/sys/mips/include/
H A Dendian.h77 #define __bswap16_const(x) (((x) >> 8) | (((x) << 8) & 0xff00)) macro
112 __bswap16_const((__uint16_t)(x)) : __bswap16_var((__uint16_t)(x))))
/freebsd-10.0-release/sys/powerpc/include/
H A Dendian.h87 #define __bswap16_const(x) ((((__uint16_t)(x) >> 8) & 0xff) | \ macro
127 #define __bswap16(x) ((__uint16_t)(__is_constant(x) ? __bswap16_const(x) : \

Completed in 117 milliseconds