Home
last modified time | relevance | path

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

/dflybsd-src/sys/crypto/twofish/
H A Dtwofish.c44 #define rotr(x,n) (((x)>>(n))|((x)<<(32-(n)))) macro
/dflybsd-src/contrib/wpa_supplicant/src/crypto/
H A Daes_i.h70 static inline u32 rotr(u32 val, int bits) in rotr() function
/dflybsd-src/sys/netproto/802_11/wlan_tkip/
H A Dieee80211_crypto_tkip.c733 static __inline u32 rotr(u32 val, int bits) in rotr() function
/dflybsd-src/sys/crypto/serpent/
H A Dserpent.c39 #define rotr(x,n) (((x) >> ((int)((n) & 0x1f))) | ((x) << ((int)((32 - ((n) & 0x1f)))))) macro