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

/freebsd-10.1-release/crypto/openssl/crypto/camellia/
H A Dcamellia.c93 # define RightRotate(x, s) _lrotr(x, s) macro
104 # define RightRotate(x,s) ({u32 ret; asm ("rorl %1,%0":"=r"(ret):"I"(s),"0"(x):"cc"); ret; }) macro
116 # define RightRotate(x,s) LeftRotate(x,(32-s)) macro
119 # define RightRotate(x,s) LeftRotate(x,(32-s)) macro
127 # define RightRotate(x, s) ( ((x) >> (s)) + ((x) << (32 - s)) ) macro

Completed in 99 milliseconds