Home
last modified time | relevance | path

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

/illumos-gate/usr/src/tools/smatch/src/compat/
H A Dbswap.h35 #define bswap32(x) __builtin_bswap32(x) macro
38 static inline uint32_t bswap32(uint32_t x) in bswap32() function
50 return ((uint64_t)bswap32(x)) << 32 | bswap32(x >> 32); in bswap64()
/illumos-gate/usr/src/boot/sys/sys/
H A Dendian.h60 #define bswap32(x) __bswap32(x) macro
69 #define htobe32(x) bswap32((x))
76 #define be32toh(x) bswap32((x))
86 #define htole32(x) bswap32((x))
93 #define le32toh(x) bswap32((x))
/illumos-gate/usr/src/tools/smatch/src/validation/
H A Dbuiltin-bswap-constant.c7 unsigned int bswap32(void);
8 unsigned int bswap32(void) in bswap32() function
/illumos-gate/usr/src/common/crypto/aes/amd64/
H A Daesopt.h526 #elif defined(bswap32)
527 #define aes_sw32 bswap32
/illumos-gate/usr/src/tools/smatch/src/
H A Dbuiltin.c216 case 32: expr->value = bswap32(val); break; in expand_bswap()