Searched defs:BSWAP_32 (Results 1 - 3 of 3) sorted by relevance

/illumos-gate/usr/src/uts/common/sys/
H A Dbyteorder.h110 #define BSWAP_32(x) (((uint32_t)(x) << 24) | \ macro
116 #define BSWAP_32(x) htonl(x) macro
133 #define BSWAP_64(x) ((BSWAP_32(x) << 32) | BSWAP_32((x) >> 32))
151 #define LE_32(x) BSWAP_32(x)
160 #define BE_32(x) BSWAP_32(x)
/illumos-gate/usr/src/grub/grub-0.97/stage2/
H A Dfsys_zfs.h101 #define BSWAP_32(x) ((BSWAP_16(x) << 16) | BSWAP_16((x) >> 16)) macro
102 #define BSWAP_64(x) ((BSWAP_32(x) << 32) | BSWAP_32((x) >> 32))
/illumos-gate/usr/src/boot/sys/cddl/boot/zfs/
H A Dzfsimpl.h114 #define BSWAP_32(x) ((BSWAP_16(x) << 16) | BSWAP_16((x) >> 16)) macro
115 #define BSWAP_64(x) ((BSWAP_32(x) << 32) | BSWAP_32((x) >> 32))

Completed in 65 milliseconds