Searched refs:rotr (Results 1 - 22 of 22) sorted by relevance

/freebsd-12-stable/contrib/wpa/src/crypto/
H A Daes_i.h70 static inline u32 rotr(u32 val, int bits) function
76 #define TE1(i) rotr(Te0[((i) >> 16) & 0xff], 8)
77 #define TE2(i) rotr(Te0[((i) >> 8) & 0xff], 16)
78 #define TE3(i) rotr(Te0[(i) & 0xff], 24)
94 #define TD1(i) rotr(Td0[((i) >> 16) & 0xff], 8)
95 #define TD2(i) rotr(Td0[((i) >> 8) & 0xff], 16)
96 #define TD3(i) rotr(Td0[(i) & 0xff], 24)
102 #define TD1_(i) rotr(Td0[(i) & 0xff], 8)
103 #define TD2_(i) rotr(Td0[(i) & 0xff], 16)
104 #define TD3_(i) rotr(Td
[all...]
/freebsd-12-stable/crypto/openssl/crypto/rc5/asm/
H A Drc5-586.pl97 &rotr($B, &LB("ecx"));
103 &rotr($A, &LB("ecx"));
/freebsd-12-stable/crypto/openssl/crypto/des/asm/
H A Dcrypt586.pl117 &rotr( $t, 4 );
182 { &rotr($tt, 3-$lr); }
188 { &rotr($r, 2-$lr); }
201 else { &rotr($r, $lr-2); }
207 else { &rotr($l, $lr-3); }
215 &rotr($tt , 4);
H A Ddes-586.pl198 &rotr($L,3); # r
200 &rotr($R,3); # l
228 &rotr( $t, 4 );
290 { &rotr($tt, 3-$lr); }
296 { &rotr($r, 2-$lr); }
309 else { &rotr($r, $lr-2); }
315 else { &rotr($l, $lr-3); }
323 &rotr($tt , 4);
/freebsd-12-stable/crypto/openssl/crypto/sha/asm/
H A Dsha1-mips.pl111 rotr @X[$i],@X[$i],16
128 rotr $t1,$a,27
139 rotr $b,$b,2
168 rotr @X[$i],@X[$i],16
186 rotr $t1,$a,27
193 rotr @X[$j%16],@X[$j%16],31
194 rotr $b,$b,2
227 rotr $t1,$a,27
234 rotr @X[$j%16],@X[$j%16],31
235 rotr
[all...]
H A Dsha1-586.pl185 &rotr($b,2); # b=ROTATE(b,30)
212 &rotr($b,$n==16?2:7); # b=ROTATE(b,30)
229 &rotr($b,2); # b=ROTATE(b,30)
254 &rotr($b,7); # b=ROTATE(b,30)
262 &rotr($a,5) if ($n==79);
272 &rotr($b,2); # b=ROTATE(b,30)
297 &rotr($b,7); # b=ROTATE(b,30)
316 &rotr($b,2); # b=ROTATE(b,30)
H A Dsha512-mips.pl114 $ROTR="rotr";
148 rotr @X[0],@X[0],16
H A Dsha512-ia64.pl192 .rotr R[8],X[16]
/freebsd-12-stable/contrib/bearssl/src/symcipher/
H A Daes_big_enc.c76 rotr(uint32_t x, int n) function
82 #define SboxExt1(x) (rotr(Ssm0[x], 8))
83 #define SboxExt2(x) (rotr(Ssm0[x], 16))
84 #define SboxExt3(x) (rotr(Ssm0[x], 24))
H A Daes_big_dec.c176 rotr(uint32_t x, int n) function
182 #define iSboxExt1(x) (rotr(iSsm0[x], 8))
183 #define iSboxExt2(x) (rotr(iSsm0[x], 16))
184 #define iSboxExt3(x) (rotr(iSsm0[x], 24))
/freebsd-12-stable/crypto/openssl/crypto/aes/asm/
H A Daes-mips.pl178 rotr $t0,$t0,8
179 rotr $t1,$t1,8
180 rotr $t2,$t2,8
181 rotr $t3,$t3,8
183 rotr $t4,$t4,16
184 rotr $t5,$t5,16
185 rotr $t6,$t6,16
186 rotr $t7,$t7,16
197 rotr $t8,$t8,24
199 rotr
[all...]
/freebsd-12-stable/sys/contrib/octeon-sdk/
H A Dcvmx-debug-handler.S159 rotr k0, k0, 31 // set bit 31 for kseg0 access
161 rotr k0, k0, 1
/freebsd-12-stable/crypto/openssl/crypto/perlasm/
H A Dcbc.pl290 &rotr("edx", 16);
301 &rotr("ecx", 16);
H A Dx86asm.pl72 sub ::rotr { &ror(@_); }
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPInt.h1019 APInt rotr(unsigned rotateAmt) const;
1058 APInt rotr(const APInt &rotateAmt) const;
/freebsd-12-stable/sys/net80211/
H A Dieee80211_crypto_tkip.c800 static __inline u32 rotr(u32 val, int bits) function
820 r ^= rotr(l, 2); \
/freebsd-12-stable/crypto/openssl/crypto/bn/asm/
H A Dia64-mont.pl130 .rotr a[3],n[3],t[2]
421 .rotr t[8]
/freebsd-12-stable/crypto/openssl/crypto/camellia/asm/
H A Dcmll-x86.pl113 &rotr ($t3,8); # t3=RightRotate(t3,8)
/freebsd-12-stable/crypto/openssl/crypto/modes/asm/
H A Dghash-ia64.pl125 .rotr in[3],xi[3],Hi[2]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/
H A DAPInt.cpp1081 APInt APInt::rotr(const APInt &rotateAmt) const {
1082 return rotr(rotateModulo(BitWidth, rotateAmt));
1085 APInt APInt::rotr(unsigned rotateAmt) const {
/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/
H A DExprConstant.cpp2444 Res |= EltAsInt.zextOrTrunc(VecSize).rotr(i*EltSize+BaseEltSize);
9450 Elt = SValInt.rotr(i*EltSize).trunc(FloatEltSize);
9459 Elt = SValInt.rotr(i*EltSize).zextOrTrunc(EltSize);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp4798 case ISD::ROTR: return C1.rotr(C2);

Completed in 492 milliseconds