/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/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/include/llvm/CodeGen/ |
ISDOpcodes.h | 306 SHL, SRA, SRL, ROTL, ROTR, [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/ |
R600ISelLowering.cpp | 43 setOperationAction(ISD::ROTL, MVT::i32, Custom); 250 case ISD::ROTL: return LowerROTL(Op, DAG);
|
/external/mesa3d/src/gallium/drivers/radeon/ |
R600ISelLowering.cpp | 43 setOperationAction(ISD::ROTL, MVT::i32, Custom); 250 case ISD::ROTL: return LowerROTL(Op, DAG);
|
/external/llvm/lib/Target/NVPTX/ |
NVPTXISelLowering.cpp | 150 setOperationAction(ISD::ROTL, MVT::i64, Legal); 153 setOperationAction(ISD::ROTL, MVT::i64, Expand); 157 setOperationAction(ISD::ROTL, MVT::i32, Legal); 160 setOperationAction(ISD::ROTL, MVT::i32, Expand); 164 setOperationAction(ISD::ROTL, MVT::i16, Expand); 166 setOperationAction(ISD::ROTL, MVT::i8, Expand); [all...] |
/external/llvm/lib/Target/SystemZ/ |
SystemZISelDAGToDAG.cpp | 104 // (or (rotl Input, Rotate), ~Mask) 108 // (and (rotl Input, Rotate), Mask) 707 case ISD::ROTL: { 732 // Treat (shl X, count) as (rotl X, size-count) as long as the bottom 737 // Treat (shl X, count) as (and (rotl X, count), ~0<<count). 759 // Treat (srl|sra X, count) as (rotl X, size-count) as long as the top 764 // Treat (srl X, count), mask) as (and (rotl X, size-count), ~0>>count), [all...] |
/external/llvm/lib/CodeGen/SelectionDAG/ |
SelectionDAGDumper.cpp | 171 case ISD::ROTL: return "rotl";
|
LegalizeVectorOps.cpp | 211 case ISD::ROTL:
|
DAGCombiner.cpp | [all...] |
SelectionDAG.cpp | [all...] |
LegalizeIntegerTypes.cpp | [all...] |
/external/llvm/lib/Target/R600/ |
AMDGPUISelLowering.cpp | 53 // The hardware supports ROTR, but not ROTL 54 setOperationAction(ISD::ROTL, MVT::i32, Expand);
|
/external/chromium_org/third_party/openssl/openssl/crypto/bn/asm/ |
ppc.pl | 126 $ROTL= "rotlwi"; # rotate left by immediate 150 $ROTL= "rotldi"; # rotate left by immediate [all...] |
/external/openssl/crypto/bn/asm/ |
ppc.pl | 126 $ROTL= "rotlwi"; # rotate left by immediate 150 $ROTL= "rotldi"; # rotate left by immediate [all...] |
/external/llvm/lib/Target/MSP430/ |
MSP430ISelLowering.cpp | 101 setOperationAction(ISD::ROTL, MVT::i8, Expand); 103 setOperationAction(ISD::ROTL, MVT::i16, Expand); [all...] |
/external/llvm/lib/Target/PowerPC/ |
PPCISelDAGToDAG.cpp | 383 } else if (Opcode == ISD::ROTL) { [all...] |
/external/valgrind/main/VEX/priv/ |
guest_ppc_toIR.c | [all...] |
/external/llvm/lib/Target/AArch64/ |
AArch64ISelLowering.cpp | 130 setOperationAction(ISD::ROTL, MVT::i32, Expand); 131 setOperationAction(ISD::ROTL, MVT::i64, Expand); [all...] |
/external/llvm/lib/Target/Hexagon/ |
HexagonISelLowering.cpp | [all...] |
/external/llvm/lib/Target/Sparc/ |
SparcISelLowering.cpp | [all...] |
/external/llvm/lib/Target/XCore/ |
XCoreISelLowering.cpp | 112 setOperationAction(ISD::ROTL , MVT::i32, Expand); [all...] |
/external/llvm/lib/Target/Mips/ |
MipsISelLowering.cpp | 315 setOperationAction(ISD::ROTL, MVT::i32, Expand); 316 setOperationAction(ISD::ROTL, MVT::i64, Expand); [all...] |