/external/llvm/test/CodeGen/R600/ |
rotr.ll | 19 ; R600-CHECK: @rotl 24 ; SI-CHECK: @rotl 27 define void @rotl(i32 addrspace(1)* %in, i32 %x, i32 %y) {
|
/external/llvm/test/TableGen/ |
SetTheory.td | 95 // The 'rotl' operator rotates left, but also accepts a negative shift. 96 def rotl; 97 def S6a : Set<(rotl S0f, 0)>; 98 def S6b : Set<(rotl S0f, 1)>; 99 def S6c : Set<(rotl S0f, 3)>; 100 def S6d : Set<(rotl S0f, 4)>; 101 def S6e : Set<(rotl S0f, 5)>; 102 def S6f : Set<(rotl S0f, -1)>; 103 def S6g : Set<(rotl S0f, -4)>; 104 def S6h : Set<(rotl S0f, -5)> [all...] |
/external/llvm/test/CodeGen/SystemZ/ |
risbg-01.ll | 142 %rotl = or i32 %parta, %partb 143 %and = and i32 %rotl, 248 154 %rotl = or i64 %parta, %partb 155 %and = and i64 %rotl, 248 166 %rotl = or i32 %parta, %partb 167 %and = and i32 %rotl, 114688 178 %rotl = or i64 %parta, %partb 179 %and = and i64 %rotl, 114688 192 %rotl = or i32 %parta, %partb 193 %and = and i32 %rotl, 12 [all...] |
/external/chromium_org/third_party/openssl/openssl/crypto/des/asm/ |
crypt586.pl | 144 &rotl( $a, $shift ) if ($shift != 0); 175 else { &rotl($tt, $lr-3); } 181 else { &rotl($r, $lr-2); } 192 { &rotl($r, 2-$lr); } 198 { &rotl($l, 3-$lr); }
|
des-586.pl | 152 &rotl($R,3); 154 &rotl($L,3); 247 &rotl( $a, $shift ) if ($shift != 0); 280 else { &rotl($tt, $lr-3); } 286 else { &rotl($r, $lr-2); } 297 { &rotl($r, 2-$lr); } 303 { &rotl($l, 3-$lr); }
|
/external/openssl/crypto/des/asm/ |
crypt586.pl | 144 &rotl( $a, $shift ) if ($shift != 0); 175 else { &rotl($tt, $lr-3); } 181 else { &rotl($r, $lr-2); } 192 { &rotl($r, 2-$lr); } 198 { &rotl($l, 3-$lr); }
|
des-586.pl | 152 &rotl($R,3); 154 &rotl($L,3); 247 &rotl( $a, $shift ) if ($shift != 0); 280 else { &rotl($tt, $lr-3); } 286 else { &rotl($r, $lr-2); } 297 { &rotl($r, 2-$lr); } 303 { &rotl($l, 3-$lr); }
|
/external/chromium/net/http/ |
md4.cc | 65 #define ROTL(x,n) (((x) << (n)) | ((x) >> (0x20 - n))) 68 #define RD1(a,b,c,d,k,s) a += F(b,c,d) + X[k]; a = ROTL(a,s) 71 #define RD2(a,b,c,d,k,s) a += G(b,c,d) + X[k] + 0x5A827999; a = ROTL(a,s) 74 #define RD3(a,b,c,d,k,s) a += H(b,c,d) + X[k] + 0x6ED9EBA1; a = ROTL(a,s)
|
/external/chromium_org/net/http/ |
md4.cc | 65 #define ROTL(x,n) (((x) << (n)) | ((x) >> (0x20 - n))) 68 #define RD1(a,b,c,d,k,s) a += F(b,c,d) + X[k]; a = ROTL(a,s) 71 #define RD2(a,b,c,d,k,s) a += G(b,c,d) + X[k] + 0x5A827999; a = ROTL(a,s) 74 #define RD3(a,b,c,d,k,s) a += H(b,c,d) + X[k] + 0x6ED9EBA1; a = ROTL(a,s)
|
/external/llvm/unittests/ADT/ |
APIntTest.cpp | 156 EXPECT_EQ(one, one.rotl(0)); 157 EXPECT_EQ(one, one.rotl(1)); 496 EXPECT_EQ(APInt(8, 1), APInt(8, 1).rotl(0)); 497 EXPECT_EQ(APInt(8, 2), APInt(8, 1).rotl(1)); 498 EXPECT_EQ(APInt(8, 4), APInt(8, 1).rotl(2)); 499 EXPECT_EQ(APInt(8, 16), APInt(8, 1).rotl(4)); 500 EXPECT_EQ(APInt(8, 1), APInt(8, 1).rotl(8)); 502 EXPECT_EQ(APInt(8, 16), APInt(8, 16).rotl(0)); 503 EXPECT_EQ(APInt(8, 32), APInt(8, 16).rotl(1)); 504 EXPECT_EQ(APInt(8, 64), APInt(8, 16).rotl(2)) [all...] |
/external/chromium_org/third_party/openssl/openssl/crypto/ripemd/asm/ |
rmd-586.pl | 89 &rotl($c, 10); 93 &rotl($a, $s); 105 &rotl($c, 10); 110 &rotl($a, $s); 134 &rotl($c, 10); 138 &rotl($a, $s); 154 &rotl($c, 10); 161 &rotl($c, 10); 165 &rotl($a, $s); 185 &rotl($c, 10) [all...] |
/external/openssl/crypto/ripemd/asm/ |
rmd-586.pl | 89 &rotl($c, 10); 93 &rotl($a, $s); 105 &rotl($c, 10); 110 &rotl($a, $s); 134 &rotl($c, 10); 138 &rotl($a, $s); 154 &rotl($c, 10); 161 &rotl($c, 10); 165 &rotl($a, $s); 185 &rotl($c, 10) [all...] |
/external/llvm/lib/Target/X86/ |
X86InstrShiftRotate.td | 476 [(set GR8:$dst, (rotl GR8:$src1, CL))], IIC_SR>; 479 [(set GR16:$dst, (rotl GR16:$src1, CL))], IIC_SR>, OpSize; 482 [(set GR32:$dst, (rotl GR32:$src1, CL))], IIC_SR>; 485 [(set GR64:$dst, (rotl GR64:$src1, CL))], IIC_SR>; 490 [(set GR8:$dst, (rotl GR8:$src1, (i8 imm:$src2)))], IIC_SR>; 493 [(set GR16:$dst, (rotl GR16:$src1, (i8 imm:$src2)))], 498 [(set GR32:$dst, (rotl GR32:$src1, (i8 imm:$src2)))], 503 [(set GR64:$dst, (rotl GR64:$src1, (i8 imm:$src2)))], 509 [(set GR8:$dst, (rotl GR8:$src1, (i8 1)))], 513 [(set GR16:$dst, (rotl GR16:$src1, (i8 1)))] [all...] |
/external/jmonkeyengine/engine/src/android/jme3tools/android/ |
Fixed.java | 100 int rotl = 0; typedefs 103 while (rotl < 32) { 105 rotl++; 110 ATAN_SHIFT = rotl; 114 lut[n] = tan(n) >> rotl;
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/ |
R600ISelLowering.h | 46 /// LowerROTL - Lower ROTL opcode to BITALIGN
|
/external/llvm/lib/Target/ARM/ |
ARMSelectionDAGInfo.h | 30 //case ISD::ROTL: // Only if imm -> turn into ROTR.
|
ARMRegisterInfo.td | 286 let AltOrders = [(rotl DPR, 16)]; 304 let AltOrders = [(rotl QPR, 8)]; 330 let AltOrders = [(add (rotl QPR, 8), (rotl DPair, 16))]; 365 let AltOrders = [(rotl QQPR, 8)]; 388 let AltOrders = [(rotl QQQQPR, 8)];
|
/external/mesa3d/src/gallium/drivers/radeon/ |
R600ISelLowering.h | 46 /// LowerROTL - Lower ROTL opcode to BITALIGN
|
/external/chromium_org/third_party/skia/include/core/ |
SkChecksum.h | 30 ROTL = sizeof(uintptr_t) * 8 - ROTR, 35 return ((total >> ROTR) | (total << ROTL)) ^ value;
|
/external/skia/include/core/ |
SkChecksum.h | 30 ROTL = sizeof(uintptr_t) * 8 - ROTR, 35 return ((total >> ROTR) | (total << ROTL)) ^ value;
|
/external/chromium_org/third_party/openssl/openssl/crypto/md5/asm/ |
md5-586.pl | 64 &rotl($a,$s); 89 &rotl($a,$s); 112 &rotl($a,$s); 135 &rotl($a,$s); 161 &rotl($a,$s);
|
/external/openssl/crypto/md5/asm/ |
md5-586.pl | 64 &rotl($a,$s); 89 &rotl($a,$s); 112 &rotl($a,$s); 135 &rotl($a,$s); 161 &rotl($a,$s);
|
/external/llvm/lib/Target/R600/ |
R600ISelLowering.h | 55 /// \brief Lower ROTL opcode to BITALIGN
|
/external/chromium_org/third_party/openssl/openssl/crypto/sha/asm/ |
sha1-586.pl | 145 &rotl($tmp1,5); # tmp1=ROTATE(a,5) 175 &rotl($f,1); # f=ROTATE(f,1) 181 &rotl($a,5); # ROTATE(a,5) 192 &rotl($f,1); # f=ROTATE(f,1) 198 &rotl($tmp1,5); # ROTATE(a,5) 219 &rotl($f,1); # f=ROTATE(f,1) 223 &rotl($a,5); # ROTATE(a,5) 237 &rotl($f,1); # f=ROTATE(f,1) 241 &rotl($tmp1,5); # ROTATE(a,5) 262 &rotl($f,1); # f=ROTATE(f,1 [all...] |
/external/openssl/crypto/sha/asm/ |
sha1-586.pl | 145 &rotl($tmp1,5); # tmp1=ROTATE(a,5) 175 &rotl($f,1); # f=ROTATE(f,1) 181 &rotl($a,5); # ROTATE(a,5) 192 &rotl($f,1); # f=ROTATE(f,1) 198 &rotl($tmp1,5); # ROTATE(a,5) 219 &rotl($f,1); # f=ROTATE(f,1) 223 &rotl($a,5); # ROTATE(a,5) 237 &rotl($f,1); # f=ROTATE(f,1) 241 &rotl($tmp1,5); # ROTATE(a,5) 262 &rotl($f,1); # f=ROTATE(f,1 [all...] |