HomeSort by relevance Sort by last modified time
    Searched refs:rotr (Results 1 - 23 of 23) sorted by null

  /external/wpa_supplicant_8/src/crypto/
aes_i.h 70 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(Td0[(i) & 0xff], 24
    [all...]
  /external/openssl/crypto/des/asm/
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);
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/llvm/unittests/ADT/
APIntTest.cpp 158 EXPECT_EQ(one, one.rotr(0));
159 EXPECT_EQ(one, one.rotr(1));
508 EXPECT_EQ(APInt(8, 16), APInt(8, 16).rotr(0));
509 EXPECT_EQ(APInt(8, 8), APInt(8, 16).rotr(1));
510 EXPECT_EQ(APInt(8, 4), APInt(8, 16).rotr(2));
511 EXPECT_EQ(APInt(8, 1), APInt(8, 16).rotr(4));
512 EXPECT_EQ(APInt(8, 16), APInt(8, 16).rotr(8));
514 EXPECT_EQ(APInt(8, 1), APInt(8, 1).rotr(0));
515 EXPECT_EQ(APInt(8, 128), APInt(8, 1).rotr(1));
516 EXPECT_EQ(APInt(8, 64), APInt(8, 1).rotr(2))
    [all...]
  /external/openssl/crypto/bf/asm/
bf-686.pl 95 &rotr( $R, 16);
101 &rotr( $R, 16);
  /external/llvm/test/MC/Mips/
mips-alu-instructions.s 17 # CHECK: rotr $9, $6, 7 # encoding: [0xc2,0x49,0x26,0x00]
44 rotr $9, $6, 7
mips64-alu-instructions.s 17 # CHECK: rotr $9, $6, 7 # encoding: [0xc2,0x49,0x26,0x00]
44 rotr $9, $6, 7
  /external/v8/test/cctest/
test-disasm-mips.cc 280 COMPARE(rotr(a0, a1, 0),
281 "00252002 rotr a0, a1, 0");
282 COMPARE(rotr(s0, s1, 8),
283 "00318202 rotr s0, s1, 8");
284 COMPARE(rotr(t2, t3, 24),
285 "002b5602 rotr t2, t3, 24");
286 COMPARE(rotr(v0, v1, 31),
287 "002317c2 rotr v0, v1, 31");
  /external/openssl/crypto/perlasm/
cbc.pl 283 &rotr("edx", 16);
294 &rotr("ecx", 16);
x86asm.pl 65 sub ::rotr { &ror(@_); }
  /external/openssl/crypto/sha/asm/
sha1-586.pl 152 &rotr($b,2); # b=ROTATE(b,30)
179 &rotr($b,$n==16?2:7); # b=ROTATE(b,30)
196 &rotr($b,2); # b=ROTATE(b,30)
221 &rotr($b,7); # b=ROTATE(b,30)
229 &rotr($a,5) if ($n==79);
239 &rotr($b,2); # b=ROTATE(b,30)
264 &rotr($b,7); # b=ROTATE(b,30)
283 &rotr($b,2); # b=ROTATE(b,30)
    [all...]
  /external/llvm/include/llvm/ADT/
APInt.h 785 APInt rotr(unsigned rotateAmt) const;
803 APInt rotr(const APInt &rotateAmt) const;
    [all...]
  /external/openssl/crypto/bn/asm/
ia64-mont.pl 121 .rotr a[3],n[3],t[2]
412 .rotr t[8]
  /external/valgrind/main/none/tests/mips32/
MIPS32int.stdout.exp     [all...]
  /external/llvm/lib/Support/
APInt.cpp     [all...]
  /external/v8/src/mips/
assembler-mips.h 738 void rotr(Register rd, Register rt, uint16_t sa);
    [all...]
assembler-mips.cc 1318 void Assembler::rotr(Register rd, Register rt, uint16_t sa) { function in class:v8::Assembler
    [all...]
macro-assembler-mips.cc 751 rotr(rd, rs, rt.imm32_);
    [all...]
  /external/openssl/crypto/aes/asm/
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);
    [all...]
  /external/openssl/crypto/modes/asm/
ghash-ia64.pl 118 .rotr in[3],xi[3],Hi[2]
  /external/qemu/tcg/i386/
tcg-target.c     [all...]
  /external/clang/lib/AST/
ExprConstant.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp     [all...]

Completed in 986 milliseconds