Searched defs:RL (Results 1 - 24 of 24) sorted by relevance

/external/clang/lib/CodeGen/
H A DCGObjCRuntime.cpp41 const ASTRecordLayout *RL; local
43 RL = &CGM.getContext().getASTObjCImplementationLayout(ID);
45 RL = &CGM.getContext().getASTObjCInterfaceLayout(Container);
60 assert(Index < RL->getFieldCount() && "Ivar is not inside record layout!");
62 return RL->getFieldOffset(Index);
H A DCGRecordLayoutBuilder.cpp666 CGRecordLayout *RL = local
670 RL->NonVirtualBases.swap(Builder.NonVirtualBases);
671 RL->CompleteObjectVirtualBases.swap(Builder.VirtualBases);
674 RL->FieldInfo.swap(Builder.Fields);
677 RL->BitFields.swap(Builder.BitFields);
685 RL->print(llvm::outs());
709 dyn_cast<llvm::StructType>(RL->getLLVMType());
720 unsigned FieldNo = RL->getLLVMFieldNo(FD);
734 const CGBitFieldInfo &Info = RL->getBitFieldInfo(FD);
735 llvm::Type *ElementTy = ST->getTypeAtIndex(RL
[all...]
H A DCGClass.cpp820 const CGRecordLayout &RL = local
822 const CGBitFieldInfo &BFInfo = RL.getBitFieldInfo(FirstField);
H A DCGDebugInfo.cpp1185 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD); local
1201 BaseOffset = CGM.getContext().toBits(RL.getBaseClassOffset(Base));
1398 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD); local
1401 if (RL.getPrimaryBase())
1717 const ASTRecordLayout &RL = CGM.getContext().getASTObjCInterfaceLayout(ID); local
1760 FieldOffset = RL.getFieldOffset(FieldNo);
2285 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD); local
2286 if (const CXXRecordDecl *PBase = RL.getPrimaryBase()) {
H A DCGExpr.cpp2522 const CGRecordLayout &RL = local
2524 const CGBitFieldInfo &Info = RL.getBitFieldInfo(field);
2526 unsigned Idx = RL.getLLVMFieldNo(field);
2640 const CGRecordLayout &RL = local
2642 unsigned idx = RL.getLLVMFieldNo(Field);
H A DCGExprScalar.cpp1847 const ASTRecordLayout &RL = CGF.getContext().getASTRecordLayout(RD); local
1858 assert(i < RL.getFieldCount() && "offsetof field in wrong type");
1861 int64_t OffsetInt = RL.getFieldOffset(i) /
1880 const ASTRecordLayout &RL = CGF.getContext().getASTRecordLayout(RD); local
1888 CharUnits OffsetInt = RL.getBaseClassOffset(BaseRD);
H A DCGObjCMac.cpp2083 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD); local
2085 CGM.getContext().toCharUnitsFromBits(RL.getFieldOffset(i));
4528 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD); local
4529 FieldOffset = (RL.getFieldOffset(i) / ByteSizeInBits) - FirstFieldDelta;
5752 const ASTRecordLayout &RL = local
5756 InstanceSize = RL.getDataSize().getQuantity();
5759 if (!RL.getFieldCount())
5762 InstanceStart = RL.getFieldOffset(0) / CGM.getContext().getCharWidth();
/external/clang/lib/Sema/
H A DSemaStmtAsm.cpp466 const ASTRecordLayout &RL = Context.getASTRecordLayout(RT->getDecl()); local
468 CharUnits Result = Context.toCharUnitsFromBits(RL.getFieldOffset(i));
H A DSemaExpr.cpp8610 DeclRefExpr *RL = dyn_cast<DeclRefExpr>(OL->getBase()->IgnoreImpCasts()); local
8612 if (RL && RR && RL->getDecl() == RR->getDecl())
/external/chromium_org/v8/tools/push-to-trunk/
H A Dtest_scripts.py260 def RL(text, cb=None): function
451 RL("Y"),
464 RL("n"),
476 RL("Y"),
594 RL(""), # Open editor.
615 RL("Y"), # Increment build number.
752 expectations.append(RL("Y")) # Confirm last push.
763 expectations.append(RL("")) # Increment build number.
771 expectations.append(RL("")) # Open editor.
791 expectations.append(RL("
[all...]
/external/compiler-rt/test/tsan/
H A Ddeadlock_detector_stress_test.cc128 void RL(size_t i) { function in class:LockTest
283 RL(0); L(1); RU(0); U(1);
284 L(1); RL(0); RU(0); U(1);
289 RL(2); RL(3); RU(2); RU(3);
290 RL(3); RL(2); RU(2); RU(3);
373 RL(000);
374 RL(100);
375 RL(20
[all...]
/external/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeTypesGeneric.cpp515 SDValue LL, LH, RL, RH, CL, CH; local
518 GetSplitOp(N->getOperand(2), RL, RH);
531 Lo = DAG.getNode(N->getOpcode(), dl, LL.getValueType(), CL, LL, RL);
537 SDValue LL, LH, RL, RH; local
540 GetSplitOp(N->getOperand(3), RL, RH);
543 N->getOperand(1), LL, RL, N->getOperand(4));
H A DLegalizeIntegerTypes.cpp1966 SDValue LL, LH, RL, RH; local
1968 GetExpandedInteger(N->getOperand(1), RL, RH);
1969 Lo = DAG.getNode(N->getOpcode(), dl, LL.getValueType(), LL, RL);
1979 SDValue LL, LH, RL, RH; local
1981 GetExpandedInteger(N->getOperand(1), RL, RH);
1983 if (TLI.expandMUL(N, Lo, Hi, NVT, DAG, LL, LH, RL, RH))
H A DTargetLowering.cpp2788 SDValue RL, SDValue RH) const {
2802 // LL, LH, RL, and RH must be either all NULL or all set to a value.
2803 assert((LL.getNode() && LH.getNode() && RL.getNode() && RH.getNode()) ||
2804 (!LL.getNode() && !LH.getNode() && !RL.getNode() && !RH.getNode()));
2806 if (!LL.getNode() && !RL.getNode() &&
2809 RL = DAG.getNode(ISD::TRUNCATE, dl, HiLoVT, N->getOperand(1));
2822 DAG.getVTList(HiLoVT, HiLoVT), LL, RL);
2828 Lo = DAG.getNode(ISD::MUL, dl, HiLoVT, LL, RL);
2829 Hi = DAG.getNode(ISD::MULHU, dl, HiLoVT, LL, RL);
2838 DAG.getVTList(HiLoVT, HiLoVT), LL, RL);
2786 expandMUL(SDNode *N, SDValue &Lo, SDValue &Hi, EVT HiLoVT, SelectionDAG &DAG, SDValue LL, SDValue LH, SDValue RL, SDValue RH) const argument
[all...]
H A DLegalizeVectorTypes.cpp963 SDValue LL, LH, RL, RH; local
965 std::tie(RL, RH) = DAG.SplitVectorOperand(N, 1);
967 Lo = DAG.getNode(N->getOpcode(), DL, LoVT, LL, RL, N->getOperand(2));
H A DDAGCombiner.cpp2593 SDValue LL, LR, RL, RR, CC0, CC1; local
2761 if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){
2770 LR.getValueType(), LL, RL);
2777 LR.getValueType(), LL, RL);
2784 LR.getValueType(), LL, RL);
2790 if (LL == RL && isa<ConstantSDNode>(LR) && isa<ConstantSDNode>(RR) &&
2803 if (LL == RR && LR == RL) {
2805 std::swap(RL, RR);
2807 if (LL == RL && LR == RR) {
3231 SDValue LL, LR, RL, R local
4602 SDValue Lo, Hi, LL, LH, RL, RH; local
[all...]
/external/llvm/include/llvm/ADT/
H A DImmutableSet.h518 TreeTy *RL = getLeft(R); local
521 if (getHeight(RR) >= getHeight(RL))
522 return createNode(createNode(L,V,RL), R, RR);
524 assert(!isEmpty(RL) && "RL cannot be empty because it has a height >= 1");
526 TreeTy *RLL = getLeft(RL);
527 TreeTy *RLR = getRight(RL);
529 return createNode(createNode(L,V,RLL), RL, createNode(RLR,R,RR));
/external/llvm/lib/Target/XCore/
H A DXCoreISelLowering.cpp668 SDValue LL, RL, AddendL, AddendH; local
671 RL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
685 AddendL, LL, RL);
693 AddendL, LL, RL);
704 AddendL, LL, RL);
707 LH = DAG.getNode(ISD::MUL, dl, MVT::i32, LH, RL);
/external/opencv/ml/src/
H A Dmlboost.cpp580 // RL - ... primary split sends to the right and the surrogate split sends to the left
584 double LL = 0, RL = 0, LR, RR; local
603 // now iteratively compute LL, LR, RL and RR for every possible surrogate split value.
621 RL += w; RR -= w;
622 if( RL + LR > best_val && sorted[i].val + epsilon < sorted[i+1].val )
624 best_val = RL + LR;
645 // RL - ... primary split sends to the right and the surrogate split sends to the left
H A Dmltree.cpp2056 // RL - ... primary split sends to the right and the surrogate split sends to the left
2063 int LL = 0, RL = 0, LR, RR; local
2079 // now iteratively compute LL, LR, RL and RR for every possible surrogate split value.
2095 RL++; RR--;
2096 if( RL + LR > _best_val && sorted[i].val + epsilon < sorted[i+1].val )
2098 best_val = RL + LR;
2107 double LL = 0, RL = 0, LR, RR; local
2128 // now iteratively compute LL, LR, RL and RR for every possible surrogate split value.
2146 RL += w; RR -= w;
2147 if( RL
[all...]
/external/clang/include/clang/AST/
H A DStmt.h1344 ReturnStmt(SourceLocation RL) argument
1345 : Stmt(ReturnStmtClass), RetExpr(nullptr), RetLoc(RL),
1348 ReturnStmt(SourceLocation RL, Expr *E, const VarDecl *NRVOCandidate) argument
1349 : Stmt(ReturnStmtClass), RetExpr((Stmt*) E), RetLoc(RL),
/external/llvm/lib/Target/SystemZ/
H A DSystemZISelLowering.cpp2053 SDValue RL = Op.getOperand(1); local
2055 SDValue RH = DAG.getNode(ISD::SRA, DL, VT, RL, C63);
2060 LL, RL, Ops[1], Ops[0]);
2062 SDValue NegLHTimesRL = DAG.getNode(ISD::AND, DL, VT, LH, RL);
/external/clang/lib/AST/
H A DASTContext.cpp5199 const ASTRecordLayout &RL = Ctx->getASTRecordLayout(RD); local
5200 S += llvm::utostr(RL.getFieldOffset(FD->getFieldIndex()));
/external/google-tv-pairing-protocol/java/jar/
H A Dbcprov-jdk15-143.jarMETA-INF/MANIFEST.MF META-INF/BCKEY.SF META-INF/BCKEY.DSA META ...

Completed in 6262 milliseconds