Home
last modified time | relevance | path

Searched defs:rotl (Results 1 – 4 of 4) sorted by relevance

/dragonfly/crypto/libressl/crypto/sm4/
H A Dsm4.c102 rotl(uint32_t a, uint8_t n) in rotl() function
/dragonfly/sys/crypto/twofish/
H A Dtwofish.c45 #define rotl(x,n) (((x)<<(n))|((x)>>(32-(n)))) macro
/dragonfly/sys/netproto/802_11/wlan_tkip/
H A Dieee80211_crypto_tkip.c727 static __inline u32 rotl(u32 val, int bits) in rotl() function
/dragonfly/sys/crypto/serpent/
H A Dserpent.c40 #define rotl(x,n) (((x) << ((int)((n) & 0x1f))) | ((x) >> ((int)((32 - ((n) & 0x1f)))))) macro