/external/wpa_supplicant_8/src/crypto/ |
D | aes_i.h | 72 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/ |
D | SetTheory.td | 115 // 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/ |
D | crypt586.pl | 109 &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);
|
D | des-586.pl | 187 &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/ |
D | aes.c | 817 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/ |
D | aes.c | 823 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/ |
D | sha1-586.pl | 67 &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/ |
D | rotate.ll | 13 ; CHECK: rotr $2, $4, 22 32 ; CHECK: rotr $2, $4, 10
|
/external/llvm/lib/Target/X86/ |
D | X86InstrShiftRotate.td | 508 [(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/ |
D | bf-686.pl | 95 &rotr( $R, 16); 101 &rotr( $R, 16);
|
/external/openssl/crypto/perlasm/ |
D | cbc.pl | 283 &rotr("edx", 16); 294 &rotr("ecx", 16);
|
D | x86asm.pl | 65 sub ::rotr { &ror(@_); }
|
/external/llvm/include/llvm/ADT/ |
D | APInt.h | 738 APInt rotr(unsigned rotateAmt) const; 756 APInt rotr(const APInt &rotateAmt) const;
|
/external/openssl/crypto/aes/asm/ |
D | aes-586.pl | 305 &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/ |
D | MipsInstrInfo.td | 517 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/ |
D | APInt.cpp | 1334 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/ |
D | ARMInstrThumb2.td | 28 [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)))]>;
|
D | ARMInstrThumb.td | 1095 [(set tGPR:$Rd, (rotr (bswap tGPR:$Rm), (i32 16)))]>, 1110 [(set tGPR:$Rdn, (rotr tGPR:$Rn, tGPR:$Rm))]>;
|
D | ARMInstrInfo.td | 429 [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/ |
D | assembler-mips.h | 617 void rotr(Register rd, Register rt, uint16_t sa);
|
D | assembler-mips.cc | 1242 void Assembler::rotr(Register rd, Register rt, uint16_t sa) { in rotr() function in v8::internal::Assembler
|
D | macro-assembler-mips.cc | 540 rotr(rd, rs, rt.imm32_); in Ror()
|
/external/qemu/tcg/i386/ |
D | tcg-target.c | 1597 OP_32_64(rotr): in tcg_out_op()
|
/external/llvm/include/llvm/Target/ |
D | TargetSelectionDAG.td | 321 def rotr : SDNode<"ISD::ROTR" , SDTIntShiftOp>;
|
D | Target.td | 193 // (rotr GPR, 1) - Rotate N places to the right.
|