Searched defs:LeftRotate (Results 1 – 1 of 1) sorted by relevance
/openbsd-src/lib/libcrypto/camellia/ |
H A D | camellia.c | 112 # define LeftRotate(x,s) ({u32 ret; asm ("roll %1,%0":"=r"(ret):"I"(s),"0"(x):"cc"); ret; }) macro 117 # define LeftRotate(x,s) ({u32 ret; asm ("rlwinm %0,%1,%2,0,31":"=r"(ret):"r"(x),"I"(s)); ret; }) macro 125 # define LeftRotate(x, s) ( ((x) << (s)) + ((x) >> (32 - s)) ) macro
|