Searched refs:ROTL (Results 1 - 25 of 29) sorted by relevance

12

/external/chromium_org/third_party/skia/include/core/
H A DSkChecksum.h30 ROTL = sizeof(uintptr_t) * 8 - ROTR, enumerator in enum:SkChecksum::__anon14359
35 return ((total >> ROTR) | (total << ROTL)) ^ value;
/external/skia/include/core/
H A DSkChecksum.h30 ROTL = sizeof(uintptr_t) * 8 - ROTR, enumerator in enum:SkChecksum::__anon26249
35 return ((total >> ROTR) | (total << ROTL)) ^ value;
/external/chromium/net/http/
H A Dmd4.cc65 #define ROTL(x,n) (((x) << (n)) | ((x) >> (0x20 - n))) macro
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/
H A Dmd4.cc65 #define ROTL(x,n) (((x) << (n)) | ((x) >> (0x20 - n))) macro
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/
H A DISDOpcodes.h306 SHL, SRA, SRL, ROTL, ROTR, enumerator in enum:llvm::ISD::NodeType
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
H A DR600ISelLowering.cpp43 setOperationAction(ISD::ROTL, MVT::i32, Custom);
250 case ISD::ROTL: return LowerROTL(Op, DAG);
/external/mesa3d/src/gallium/drivers/radeon/
H A DR600ISelLowering.cpp43 setOperationAction(ISD::ROTL, MVT::i32, Custom);
250 case ISD::ROTL: return LowerROTL(Op, DAG);
/external/llvm/lib/Target/NVPTX/
H A DNVPTXISelLowering.cpp150 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);
/external/llvm/lib/Target/SystemZ/
H A DSystemZISelDAGToDAG.cpp707 case ISD::ROTL: {
984 case ISD::ROTL:
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGDumper.cpp171 case ISD::ROTL: return "rotl";
H A DLegalizeVectorOps.cpp211 case ISD::ROTL:
H A DDAGCombiner.cpp3084 if (TLI.isOperationLegalOrCustom(ISD::ROTL, VT))
3085 return DAG.getNode(ISD::ROTL, SDLoc(N), VT, BSwap, ShAmt);
3277 bool HasROTL = TLI.isOperationLegalOrCustom(ISD::ROTL, VT);
3319 SDValue Rot = DAG.getNode(HasROTL ? ISD::ROTL : ISD::ROTR, DL, VT,
3353 return DAG.getNode(HasROTL ? ISD::ROTL : ISD::ROTR, DL, VT, LHSShiftArg,
3365 return DAG.getNode(HasROTR ? ISD::ROTR : ISD::ROTL, DL, VT, LHSShiftArg,
3388 return DAG.getNode(HasROTL ? ISD::ROTL : ISD::ROTR, DL, VT,
3400 return DAG.getNode(HasROTR ? ISD::ROTR : ISD::ROTL, DL, VT,
H A DSelectionDAG.cpp2217 case ISD::ROTL:
2777 case ISD::ROTL:
2914 case ISD::ROTL:
6162 case ISD::ROTL:
H A DLegalizeIntegerTypes.cpp809 case ISD::ROTL:
2486 case ISD::ROTL:
/external/llvm/lib/Target/R600/
H A DAMDGPUISelLowering.cpp53 // The hardware supports ROTR, but not ROTL
54 setOperationAction(ISD::ROTL, MVT::i32, Expand);
/external/chromium_org/third_party/openssl/openssl/crypto/bn/asm/
H A Dppc.pl126 $ROTL= "rotlwi"; # rotate left by immediate
150 $ROTL= "rotldi"; # rotate left by immediate
1713 $ROTL r3,r11,`$BITS/2` # rotate by $BITS/2 and store in r3
/external/openssl/crypto/bn/asm/
H A Dppc.pl126 $ROTL= "rotlwi"; # rotate left by immediate
150 $ROTL= "rotldi"; # rotate left by immediate
1713 $ROTL r3,r11,`$BITS/2` # rotate by $BITS/2 and store in r3
/external/llvm/lib/Target/MSP430/
H A DMSP430ISelLowering.cpp101 setOperationAction(ISD::ROTL, MVT::i8, Expand);
103 setOperationAction(ISD::ROTL, MVT::i16, Expand);
/external/llvm/lib/Target/PowerPC/
H A DPPCISelDAGToDAG.cpp383 } else if (Opcode == ISD::ROTL) {
1113 N->getOperand(0).getOpcode() != ISD::ROTL) {
/external/valgrind/main/VEX/priv/
H A Dguest_ppc_toIR.c1416 // ROTL(src32/64, rot_amt5/6)
1417 static IRExpr* /* :: Ity_I32/64 */ ROTL ( IRExpr* src, function
4287 // tmp32 = (ROTL(rS_Lo32, Imm)
4290 r = ROTL( unop(Iop_64to32, mkexpr(rS) ), mkU8(sh_imm) );
4300 // rA = (ROTL(rS, Imm) & mask) | (rA & ~mask);
4302 r = ROTL(mkexpr(rS), mkU8(sh_imm));
4322 // tmp32 = (ROTL(rS_Lo32, Imm)
4324 r = ROTL( unop(Iop_64to32, mkexpr(rS) ), mkU8(sh_imm) );
4352 // rA = ROTL(rS, Imm) & mask
4354 ROTL(mkexp
[all...]
/external/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp130 setOperationAction(ISD::ROTL, MVT::i32, Expand);
131 setOperationAction(ISD::ROTL, MVT::i64, Expand);
/external/llvm/lib/Target/Hexagon/
H A DHexagonISelLowering.cpp1413 setOperationAction(ISD::ROTL , MVT::i32, Expand);
/external/llvm/lib/Target/Sparc/
H A DSparcISelLowering.cpp1339 setOperationAction(ISD::ROTL , MVT::i32, Expand);
/external/llvm/lib/Target/XCore/
H A DXCoreISelLowering.cpp112 setOperationAction(ISD::ROTL , MVT::i32, Expand);
/external/llvm/lib/Target/Mips/
H A DMipsISelLowering.cpp315 setOperationAction(ISD::ROTL, MVT::i32, Expand);
316 setOperationAction(ISD::ROTL, MVT::i64, Expand);

Completed in 779 milliseconds

12