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

/freebsd-11-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-11-stable/crypto/openssl/crypto/rc5/asm/
H A Drc5-586.pl85 &rotr($B, &LB("ecx"));
91 &rotr($A, &LB("ecx"));
/freebsd-11-stable/crypto/openssl/crypto/des/asm/
H A Dcrypt586.pl109 &rotr( $t, 4 );
174 { &rotr($tt, 3-$lr); }
180 { &rotr($r, 2-$lr); }
193 else { &rotr($r, $lr-2); }
199 else { &rotr($l, $lr-3); }
207 &rotr($tt , 4);
H A Ddes-586.pl188 &rotr($L,3); # r
190 &rotr($R,3); # l
218 &rotr( $t, 4 );
280 { &rotr($tt, 3-$lr); }
286 { &rotr($r, 2-$lr); }
299 else { &rotr($r, $lr-2); }
305 else { &rotr($l, $lr-3); }
313 &rotr($tt , 4);
/freebsd-11-stable/crypto/openssl/crypto/sha/asm/
H A Dsha1-mips.pl104 rotr @X[$i],@X[$i],16
121 rotr $t1,$a,27
128 rotr $b,$b,2
157 rotr @X[$i],@X[$i],16
175 rotr $t1,$a,27
182 rotr @X[$j%16],@X[$j%16],31
183 rotr $b,$b,2
216 rotr $t1,$a,27
223 rotr @X[$j%16],@X[$j%16],31
224 rotr
[all...]
H A Dsha1-586.pl172 &rotr($b,2); # b=ROTATE(b,30)
199 &rotr($b,$n==16?2:7); # b=ROTATE(b,30)
216 &rotr($b,2); # b=ROTATE(b,30)
241 &rotr($b,7); # b=ROTATE(b,30)
249 &rotr($a,5) if ($n==79);
259 &rotr($b,2); # b=ROTATE(b,30)
284 &rotr($b,7); # b=ROTATE(b,30)
303 &rotr($b,2); # b=ROTATE(b,30)
H A Dsha512-mips.pl105 $ROTR="rotr";
135 rotr @X[0],@X[0],16
H A Dsha512-ia64.pl185 .rotr R[8],X[16]
/freebsd-11-stable/crypto/openssl/crypto/bf/asm/
H A Dbf-686.pl95 &rotr( $R, 16);
101 &rotr( $R, 16);
/freebsd-11-stable/crypto/openssl/crypto/aes/asm/
H A Daes-mips.pl175 rotr $t0,$t0,8
176 rotr $t1,$t1,8
177 rotr $t2,$t2,8
178 rotr $t3,$t3,8
180 rotr $t4,$t4,16
181 rotr $t5,$t5,16
182 rotr $t6,$t6,16
183 rotr $t7,$t7,16
194 rotr $t8,$t8,24
196 rotr
[all...]
H A Daes-586.pl306 &rotr ($s2,8); # 8,11,10, 9
309 &rotr ($s3,16); # 13,12,15,14
312 &rotr ($s0,16); # 1, 0, 3, 2
488 &rotr ($tmp,16);
493 &rotr ($r2,16+8);
/freebsd-11-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-11-stable/crypto/openssl/crypto/perlasm/
H A Dcbc.pl283 &rotr("edx", 16);
294 &rotr("ecx", 16);
H A Dx86asm.pl65 sub ::rotr { &ror(@_); }
/freebsd-11-stable/crypto/openssl/crypto/rc4/asm/
H A Drc4-ia64.pl475 .rotr Data[4], I[2], IPr[3], SI[3], JP[2], SJ[2], T[2], \\
/freebsd-11-stable/sys/net80211/
H A Dieee80211_crypto_tkip.c727 static __inline u32 rotr(u32 val, int bits) function
747 r ^= rotr(l, 2); \
/freebsd-11-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-11-stable/crypto/openssl/crypto/bn/asm/
H A Dia64-mont.pl121 .rotr a[3],n[3],t[2]
412 .rotr t[8]
/freebsd-11-stable/crypto/openssl/crypto/camellia/asm/
H A Dcmll-x86.pl103 &rotr ($t3,8); # t3=RightRotate(t3,8)
/freebsd-11-stable/crypto/openssl/crypto/modes/asm/
H A Dghash-ia64.pl118 .rotr in[3],xi[3],Hi[2]
/freebsd-11-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-11-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-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp4798 case ISD::ROTR: return C1.rotr(C2);

Completed in 328 milliseconds