Home
last modified time | relevance | path

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

/f-stack/freebsd/sys/
H A Dendian.h62 #define bswap32(x) __bswap32(x) macro
71 #define htobe32(x) bswap32((x))
78 #define be32toh(x) bswap32((x))
88 #define htole32(x) bswap32((x))
95 #define le32toh(x) bswap32((x))
/f-stack/freebsd/contrib/zstd/lib/freebsd/
H A Dzstd_kfreebsd.c57 return (bswap32(x)); in __bswapsi2()
/f-stack/freebsd/mips/nlm/
H A Dbus_space_rmi_pci.c428 return bswap32(value); in rmi_pci_bus_space_read_4()
464 *addr = bswap32(*addr); in rmi_pci_bus_space_read_multi_4()
495 *(volatile u_int32_t *)(handle + offset) = bswap32(value); in rmi_pci_bus_space_write_4()
531 (*(volatile u_int32_t *)(handle + offset)) = bswap32(*addr); in rmi_pci_bus_space_write_multi_4()
/f-stack/freebsd/contrib/openzfs/module/icp/asm-x86_64/aes/
H A Daesopt.h525 #elif defined(bswap32)
526 #define aes_sw32 bswap32
/f-stack/freebsd/crypto/via/
H A Dpadlock_hash.c112 *dst++ = bswap32(*src++); in padlock_output_block()
/f-stack/freebsd/opencrypto/
H A Drmd160.c172 x[i] = bswap32(*(const uint32_t*)(block+i*4)); in RMD160Transform()