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

/barrelfish-master/lib/openssl-1.0.0d/crypto/camellia/
H A Dcamellia.c93 # define LeftRotate(x, s) _lrotl(x, s) macro
104 # define LeftRotate(x,s) ({u32 ret; asm ("roll %1,%0":"=r"(ret):"I"(s),"0"(x):"cc"); ret; }) macro
114 # define LeftRotate(x,s) ({u32 ret; asm ("rlwinm %0,%1,%2,0,31":"=r"(ret):"r"(x),"I"(s)); ret; }) macro
117 # define LeftRotate(x,s) ({u32 ret; asm ("rll %0,%1,%2":"=r"(ret):"r"(x),"I"(s)); ret; }) macro
127 # define LeftRotate(x, s) ( ((x) << (s)) + ((x) >> (32 - s)) ) macro
[all...]

Completed in 85 milliseconds