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

/freebsd-10.1-release/crypto/openssl/crypto/camellia/
H A Dcamellia.c94 # define LeftRotate(x, s) _lrotl(x, s) macro
105 # define LeftRotate(x,s) ({u32 ret; asm ("roll %1,%0":"=r"(ret):"I"(s),"0"(x):"cc"); ret; }) macro
115 # define LeftRotate(x,s) ({u32 ret; asm ("rlwinm %0,%1,%2,0,31":"=r"(ret):"r"(x),"I"(s)); ret; }) macro
118 # define LeftRotate(x,s) ({u32 ret; asm ("rll %0,%1,%2":"=r"(ret):"r"(x),"I"(s)); ret; }) macro
128 # define LeftRotate(x, s) ( ((x) << (s)) + ((x) >> (32 - s)) ) macro
[all...]

Completed in 105 milliseconds