Home
last modified time | relevance | path

Searched refs:rotr (Results 1 – 25 of 26) sorted by relevance

12

/external/wpa_supplicant_8/src/crypto/
Daes_i.h72 static inline u32 rotr(u32 val, int bits) in rotr() 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(Td0[(i) & 0xff], 24)
/external/llvm/test/TableGen/
DSetTheory.td115 // The 'rotr' operator rotates right, but also accepts a negative shift.
116 def rotr;
117 def S7a : Set<(rotr S0f, 0)>;
118 def S7b : Set<(rotr S0f, 1)>;
119 def S7c : Set<(rotr S0f, 3)>;
120 def S7d : Set<(rotr S0f, 4)>;
121 def S7e : Set<(rotr S0f, 5)>;
122 def S7f : Set<(rotr S0f, -1)>;
123 def S7g : Set<(rotr S0f, -4)>;
124 def S7h : Set<(rotr S0f, -5)>;
/external/openssl/crypto/des/asm/
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);
Ddes-586.pl187 &rotr($L,3); # r
189 &rotr($R,3); # l
217 &rotr( $t, 4 );
279 { &rotr($tt, 3-$lr); }
285 { &rotr($r, 2-$lr); }
298 else { &rotr($r, $lr-2); }
304 else { &rotr($l, $lr-3); }
312 &rotr($tt , 4);
/external/wpa_supplicant/
Daes.c817 static inline u32 rotr(u32 val, int bits) in rotr() function
823 #define TE1(i) rotr(Te0[((i) >> 16) & 0xff], 8)
824 #define TE2(i) rotr(Te0[((i) >> 8) & 0xff], 16)
825 #define TE3(i) rotr(Te0[(i) & 0xff], 24)
837 #define TD1(i) rotr(Td0[((i) >> 16) & 0xff], 8)
838 #define TD2(i) rotr(Td0[((i) >> 8) & 0xff], 16)
839 #define TD3(i) rotr(Td0[(i) & 0xff], 24)
845 #define TD1_(i) rotr(Td0[(i) & 0xff], 8)
846 #define TD2_(i) rotr(Td0[(i) & 0xff], 16)
847 #define TD3_(i) rotr(Td0[(i) & 0xff], 24)
/external/wpa_supplicant_6/wpa_supplicant/src/crypto/
Daes.c823 static inline u32 rotr(u32 val, int bits) in rotr() function
829 #define TE1(i) rotr(Te0[((i) >> 16) & 0xff], 8)
830 #define TE2(i) rotr(Te0[((i) >> 8) & 0xff], 16)
831 #define TE3(i) rotr(Te0[(i) & 0xff], 24)
843 #define TD1(i) rotr(Td0[((i) >> 16) & 0xff], 8)
844 #define TD2(i) rotr(Td0[((i) >> 8) & 0xff], 16)
845 #define TD3(i) rotr(Td0[(i) & 0xff], 24)
851 #define TD1_(i) rotr(Td0[(i) & 0xff], 8)
852 #define TD2_(i) rotr(Td0[(i) & 0xff], 16)
853 #define TD3_(i) rotr(Td0[(i) & 0xff], 24)
/external/openssl/crypto/sha/asm/
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)
/external/llvm/test/CodeGen/Mips/
Drotate.ll13 ; CHECK: rotr $2, $4, 22
32 ; CHECK: rotr $2, $4, 10
/external/llvm/lib/Target/X86/
DX86InstrShiftRotate.td508 [(set GR8:$dst, (rotr GR8:$src1, CL))]>;
511 [(set GR16:$dst, (rotr GR16:$src1, CL))]>, OpSize;
514 [(set GR32:$dst, (rotr GR32:$src1, CL))]>;
517 [(set GR64:$dst, (rotr GR64:$src1, CL))]>;
522 [(set GR8:$dst, (rotr GR8:$src1, (i8 imm:$src2)))]>;
525 [(set GR16:$dst, (rotr GR16:$src1, (i8 imm:$src2)))]>,
529 [(set GR32:$dst, (rotr GR32:$src1, (i8 imm:$src2)))]>;
533 [(set GR64:$dst, (rotr GR64:$src1, (i8 imm:$src2)))]>;
538 [(set GR8:$dst, (rotr GR8:$src1, (i8 1)))]>;
541 [(set GR16:$dst, (rotr GR16:$src1, (i8 1)))]>, OpSize;
[all …]
/external/openssl/crypto/bf/asm/
Dbf-686.pl95 &rotr( $R, 16);
101 &rotr( $R, 16);
/external/openssl/crypto/perlasm/
Dcbc.pl283 &rotr("edx", 16);
294 &rotr("ecx", 16);
Dx86asm.pl65 sub ::rotr { &ror(@_); }
/external/llvm/include/llvm/ADT/
DAPInt.h738 APInt rotr(unsigned rotateAmt) const;
756 APInt rotr(const APInt &rotateAmt) const;
/external/openssl/crypto/aes/asm/
Daes-586.pl305 &rotr ($s2,8); # 8,11,10, 9
308 &rotr ($s3,16); # 13,12,15,14
311 &rotr ($s0,16); # 1, 0, 3, 2
493 &rotr ($tmp,16);
495 &rotr ($tmp,8);
/external/llvm/lib/Target/Mips/
DMipsInstrInfo.td517 def ROTR : LogicR_shift_rotate_imm<0x02, 0x01, "rotr", rotr>;
518 def ROTRV : LogicR_shift_rotate_reg<0x06, 0x01, "rotrv", rotr>;
/external/llvm/lib/Support/
DAPInt.cpp1334 APInt APInt::rotr(const APInt &rotateAmt) const { in rotr() function in APInt
1335 return rotr((unsigned)rotateAmt.getLimitedValue(BitWidth)); in rotr()
1338 APInt APInt::rotr(unsigned rotateAmt) const { in rotr() function in APInt
/external/llvm/lib/Target/ARM/
DARMInstrThumb2.td28 [shl,srl,sra,rotr]> {
994 [(set rGPR:$Rd, (opnode (rotr rGPR:$Rm, rot_imm:$rot)))]> {
1023 [(set rGPR:$dst, (opnode (rotr rGPR:$Rm, rot_imm:$rot)))]>,
1084 (rotr rGPR:$Rm, rot_imm:$rot)))]>,
1985 defm t2ROR : T2I_sh_ir<0b11, "ror", BinOpFrag<(rotr node:$LHS, node:$RHS)>>;
1987 // (rotr x, (and y, 0x...1f)) ==> (ROR x, y)
1988 def : Pat<(rotr rGPR:$lhs, (and rGPR:$rhs, lo5AllOne)),
2605 [(set rGPR:$Rd, (rotr (bswap rGPR:$Rm), (i32 16)))]>;
DARMInstrThumb.td1095 [(set tGPR:$Rd, (rotr (bswap tGPR:$Rm), (i32 16)))]>,
1110 [(set tGPR:$Rdn, (rotr tGPR:$Rn, tGPR:$Rm))]>;
DARMInstrInfo.td429 [shl,srl,sra,rotr]> {
438 [shl,srl,sra,rotr]> {
898 [(set GPR:$Rd, (opnode (rotr GPR:$Rm, rot_imm:$rot)))]>,
948 (rotr GPR:$Rm, rot_imm:$rot)))]>,
3101 [(set GPR:$Rd, (rotr (bswap GPR:$Rm), (i32 16)))]>,
/external/v8/src/mips/
Dassembler-mips.h617 void rotr(Register rd, Register rt, uint16_t sa);
Dassembler-mips.cc1242 void Assembler::rotr(Register rd, Register rt, uint16_t sa) { in rotr() function in v8::internal::Assembler
Dmacro-assembler-mips.cc540 rotr(rd, rs, rt.imm32_); in Ror()
/external/qemu/tcg/i386/
Dtcg-target.c1597 OP_32_64(rotr): in tcg_out_op()
/external/llvm/include/llvm/Target/
DTargetSelectionDAG.td321 def rotr : SDNode<"ISD::ROTR" , SDTIntShiftOp>;
DTarget.td193 // (rotr GPR, 1) - Rotate N places to the right.

12