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

/freebsd-10.0-release/sys/sparc64/include/
H A Dendian.h74 #define __bswap32_const(x) ((((__uint32_t)(x) >> 24) & 0xff) | \ macro
114 #define __bswap32(x) (__is_constant(x) ? __bswap32_const(x) : \
/freebsd-10.0-release/sys/mips/include/
H A Dendian.h78 #define __bswap32_const(x) (((x) >> 24) | (((x) >> 8) & 0xff00) | \ macro
114 __bswap32_const((__uint32_t)(x)) : __bswap32_var((__uint32_t)(x))))
/freebsd-10.0-release/sys/powerpc/include/
H A Dendian.h89 #define __bswap32_const(x) ((((__uint32_t)(x) >> 24) & 0xff) | \ macro
129 #define __bswap32(x) (__is_constant(x) ? __bswap32_const(x) : \

Completed in 104 milliseconds