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

/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/openssl-1.0.0q/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
115 # define RightRotate(x,s) LeftRotate(x,(32-s))
117 # define LeftRotate(x,s) ({u32 ret; asm ("rll %0,%1,%2":"=r"(ret):"r"(x),"I"(s)); ret; }) macro
118 # define RightRotate(x,s) LeftRotate(x,(32-s))
125 #if !defined(RightRotate) && !defined(LeftRotate)
127 # define LeftRotate(x, s) ( ((x) << (s)) + ((x) >> (32 - s)) ) macro
514 s1 ^= LeftRotate(s0 & k[0], 1);
517 s3 ^= LeftRotate(s
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/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
116 # define RightRotate(x,s) LeftRotate(x,(32-s))
118 # define LeftRotate(x,s) ({u32 ret; asm ("rll %0,%1,%2":"=r"(ret):"r"(x),"I"(s)); ret; }) macro
119 # define RightRotate(x,s) LeftRotate(x,(32-s))
126 #if !defined(RightRotate) && !defined(LeftRotate)
128 # define LeftRotate(x, s) ( ((x) << (s)) + ((x) >> (32 - s)) ) macro
511 s1 ^= LeftRotate(s0 & k[0], 1);
514 s3 ^= LeftRotate(s
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/openssl-1.0.0q/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
115 # define RightRotate(x,s) LeftRotate(x,(32-s))
117 # define LeftRotate(x,s) ({u32 ret; asm ("rll %0,%1,%2":"=r"(ret):"r"(x),"I"(s)); ret; }) macro
118 # define RightRotate(x,s) LeftRotate(x,(32-s))
125 #if !defined(RightRotate) && !defined(LeftRotate)
127 # define LeftRotate(x, s) ( ((x) << (s)) + ((x) >> (32 - s)) ) macro
514 s1 ^= LeftRotate(s0 & k[0], 1);
517 s3 ^= LeftRotate(s
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/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
116 # define RightRotate(x,s) LeftRotate(x,(32-s))
118 # define LeftRotate(x,s) ({u32 ret; asm ("rll %0,%1,%2":"=r"(ret):"r"(x),"I"(s)); ret; }) macro
119 # define RightRotate(x,s) LeftRotate(x,(32-s))
126 #if !defined(RightRotate) && !defined(LeftRotate)
128 # define LeftRotate(x, s) ( ((x) << (s)) + ((x) >> (32 - s)) ) macro
511 s1 ^= LeftRotate(s0 & k[0], 1);
514 s3 ^= LeftRotate(s
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/openssl-1.0.0q/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
115 # define RightRotate(x,s) LeftRotate(x,(32-s))
117 # define LeftRotate(x,s) ({u32 ret; asm ("rll %0,%1,%2":"=r"(ret):"r"(x),"I"(s)); ret; }) macro
118 # define RightRotate(x,s) LeftRotate(x,(32-s))
125 #if !defined(RightRotate) && !defined(LeftRotate)
127 # define LeftRotate(x, s) ( ((x) << (s)) + ((x) >> (32 - s)) ) macro
514 s1 ^= LeftRotate(s0 & k[0], 1);
517 s3 ^= LeftRotate(s
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/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
116 # define RightRotate(x,s) LeftRotate(x,(32-s))
118 # define LeftRotate(x,s) ({u32 ret; asm ("rll %0,%1,%2":"=r"(ret):"r"(x),"I"(s)); ret; }) macro
119 # define RightRotate(x,s) LeftRotate(x,(32-s))
126 #if !defined(RightRotate) && !defined(LeftRotate)
128 # define LeftRotate(x, s) ( ((x) << (s)) + ((x) >> (32 - s)) ) macro
511 s1 ^= LeftRotate(s0 & k[0], 1);
514 s3 ^= LeftRotate(s
[all...]

Completed in 72 milliseconds