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

/freebsd-9.3-release/contrib/wpa/src/crypto/
H A Daes_i.h72 static inline u32 rotr(u32 val, int bits) function
78 #define TE1(i) rotr(Te0[((i) >> 16) & 0xff], 8)
79 #define TE2(i) rotr(Te0[((i) >> 8) & 0xff], 16)
80 #define TE3(i) rotr(Te0[(i) & 0xff], 24)
92 #define TD1(i) rotr(Td0[((i) >> 16) & 0xff], 8)
93 #define TD2(i) rotr(Td0[((i) >> 8) & 0xff], 16)
94 #define TD3(i) rotr(Td0[(i) & 0xff], 24)
100 #define TD1_(i) rotr(Td0[(i) & 0xff], 8)
101 #define TD2_(i) rotr(Td0[(i) & 0xff], 16)
102 #define TD3_(i) rotr(Td
[all...]
/freebsd-9.3-release/crypto/openssl/crypto/des/asm/
H A Ddes-586.pl124 &rotr($L,3); # r
126 &rotr($R,3); # l
154 &rotr( $t, 4 );
216 { &rotr($tt, 3-$lr); }
222 { &rotr($r, 2-$lr); }
235 else { &rotr($r, $lr-2); }
241 else { &rotr($l, $lr-3); }
249 &rotr($tt , 4);
H A Dcrypt586.pl108 &rotr( $t, 4 );
173 { &rotr($tt, 3-$lr); }
179 { &rotr($r, 2-$lr); }
192 else { &rotr($r, $lr-2); }
198 else { &rotr($l, $lr-3); }
206 &rotr($tt , 4);
H A Ddes686.pl121 &rotr($L,3); # r
122 &rotr($R,3); # l
151 &rotr( $t, 4 );
/freebsd-9.3-release/crypto/openssl/crypto/rc5/asm/
H A Drc5-586.pl84 &rotr($B, &LB("ecx"));
90 &rotr($A, &LB("ecx"));
/freebsd-9.3-release/crypto/openssl/crypto/bf/asm/
H A Dbf-686.pl95 &rotr( $R, 16);
101 &rotr( $R, 16);
/freebsd-9.3-release/crypto/openssl/crypto/sha/asm/
H A Dsha1-586.pl67 &rotr($b,2); # b=ROTATE(b,30)
86 &rotr($b,2); # b=ROTATE(b,30)
107 &rotr($b,2); # b=ROTATE(b,30)
143 &rotr($b,2); # b=ROTATE(b,30)
H A Dsha512-ia64.pl182 .rotr X[16]
491 .rotr X[16]
/freebsd-9.3-release/crypto/openssl/crypto/perlasm/
H A Dcbc.pl283 &rotr("edx", 16);
294 &rotr("ecx", 16);
/freebsd-9.3-release/sys/contrib/octeon-sdk/
H A Dcvmx-debug-handler.S154 rotr k0, k0, 31 // set bit 31 for kseg0 access
156 rotr k0, k0, 1
/freebsd-9.3-release/crypto/openssl/crypto/rc4/asm/
H A Drc4-ia64.S89 .rotr dat[4],key_x[4],tx[2],rnd[2],key_y[2],ty[1];
/freebsd-9.3-release/contrib/llvm/include/llvm/ADT/
H A DAPInt.h870 APInt LLVM_ATTRIBUTE_UNUSED_RESULT rotr(unsigned rotateAmt) const;
891 APInt LLVM_ATTRIBUTE_UNUSED_RESULT rotr(const APInt &rotateAmt) const;
/freebsd-9.3-release/sys/net80211/
H A Dieee80211_crypto_tkip.c717 static __inline u32 rotr(u32 val, int bits) function
737 r ^= rotr(l, 2); \
/freebsd-9.3-release/contrib/llvm/lib/Support/
H A DAPInt.cpp1251 APInt APInt::rotr(const APInt &rotateAmt) const {
1252 return rotr((unsigned)rotateAmt.getLimitedValue(BitWidth));
1255 APInt APInt::rotr(unsigned rotateAmt) const {
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/AST/
H A DExprConstant.cpp1546 Res |= EltAsInt.zextOrTrunc(VecSize).rotr(i*EltSize+BaseEltSize);
5321 Elt = SValInt.rotr(i*EltSize).trunc(FloatEltSize);
5330 Elt = SValInt.rotr(i*EltSize).zextOrTrunc(EltSize);
/freebsd-9.3-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp2862 Outputs.push_back(getConstant(C1.rotr(C2), SVT));

Completed in 161 milliseconds