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

/external/clang/lib/CodeGen/
H A DCGObjCRuntime.cpp40 const ASTRecordLayout *RL; local
42 RL = &CGM.getContext().getASTObjCImplementationLayout(ID);
44 RL = &CGM.getContext().getASTObjCInterfaceLayout(Container);
59 assert(Index < RL->getFieldCount() && "Ivar is not inside record layout!");
61 return RL->getFieldOffset(Index);
H A DCGRecordLayoutBuilder.cpp964 CGRecordLayout *RL = local
968 RL->NonVirtualBases.swap(Builder.NonVirtualBases);
969 RL->CompleteObjectVirtualBases.swap(Builder.VirtualBases);
972 RL->FieldInfo.swap(Builder.Fields);
975 RL->BitFields.swap(Builder.BitFields);
983 RL->print(llvm::outs());
1010 dyn_cast<llvm::StructType>(RL->getLLVMType());
1021 unsigned FieldNo = RL->getLLVMFieldNo(FD);
1035 const CGBitFieldInfo &Info = RL->getBitFieldInfo(FD);
1036 llvm::Type *ElementTy = ST->getTypeAtIndex(RL
[all...]
H A DCGClass.cpp790 const CGRecordLayout &RL = local
792 const CGBitFieldInfo &BFInfo = RL.getBitFieldInfo(FirstField);
H A DCGDebugInfo.cpp1171 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD); local
1188 BaseOffset = CGM.getContext().toBits(RL.getBaseClassOffset(Base));
1382 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD); local
1385 if (RL.getPrimaryBase())
1606 const ASTRecordLayout &RL = CGM.getContext().getASTObjCInterfaceLayout(ID); local
1649 FieldOffset = RL.getFieldOffset(FieldNo);
2230 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD); local
2231 if (const CXXRecordDecl *PBase = RL.getPrimaryBase()) {
H A DCGExpr.cpp2440 const CGRecordLayout &RL = local
2442 const CGBitFieldInfo &Info = RL.getBitFieldInfo(field);
2444 unsigned Idx = RL.getLLVMFieldNo(field);
2557 const CGRecordLayout &RL = local
2559 unsigned idx = RL.getLLVMFieldNo(Field);
H A DCGExprScalar.cpp1756 const ASTRecordLayout &RL = CGF.getContext().getASTRecordLayout(RD); local
1767 assert(i < RL.getFieldCount() && "offsetof field in wrong type");
1770 int64_t OffsetInt = RL.getFieldOffset(i) /
1789 const ASTRecordLayout &RL = CGF.getContext().getASTRecordLayout(RD); local
1797 CharUnits OffsetInt = RL.getBaseClassOffset(BaseRD);
H A DCGObjCMac.cpp2086 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD); local
2088 CGM.getContext().toCharUnitsFromBits(RL.getFieldOffset(i));
4554 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD); local
4555 FieldOffset = (RL.getFieldOffset(i) / ByteSizeInBits) - FirstFieldDelta;
5780 const ASTRecordLayout &RL = local
5784 InstanceSize = RL.getDataSize().getQuantity();
5787 if (!RL.getFieldCount())
5790 InstanceStart = RL.getFieldOffset(0) / CGM.getContext().getCharWidth();
/external/clang/lib/Sema/
H A DSemaStmtAsm.cpp464 const ASTRecordLayout &RL = Context.getASTRecordLayout(RT->getDecl()); local
466 CharUnits Result = Context.toCharUnitsFromBits(RL.getFieldOffset(i));
H A DSemaExpr.cpp8209 DeclRefExpr *RL = dyn_cast<DeclRefExpr>(OL->getBase()->IgnoreImpCasts()); local
8211 if (RL && RR && RL->getDecl() == RR->getDecl())
/external/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeTypesGeneric.cpp484 SDValue LL, LH, RL, RH, CL, CH; local
487 GetSplitOp(N->getOperand(2), RL, RH);
502 Lo = DAG.getNode(N->getOpcode(), dl, LL.getValueType(), CL, LL, RL);
508 SDValue LL, LH, RL, RH; local
511 GetSplitOp(N->getOperand(3), RL, RH);
514 N->getOperand(1), LL, RL, N->getOperand(4));
H A DLegalizeIntegerTypes.cpp1906 SDValue LL, LH, RL, RH; local
1908 GetExpandedInteger(N->getOperand(1), RL, RH);
1909 Lo = DAG.getNode(N->getOpcode(), dl, LL.getValueType(), LL, RL);
1924 SDValue LL, LH, RL, RH; local
1926 GetExpandedInteger(N->getOperand(1), RL, RH);
1938 Lo = DAG.getNode(ISD::UMUL_LOHI, dl, DAG.getVTList(NVT, NVT), LL, RL);
1944 Lo = DAG.getNode(ISD::MUL, dl, NVT, LL, RL);
1945 Hi = DAG.getNode(ISD::MULHU, dl, NVT, LL, RL);
1953 Lo = DAG.getNode(ISD::SMUL_LOHI, dl, DAG.getVTList(NVT, NVT), LL, RL);
1959 Lo = DAG.getNode(ISD::MUL, dl, NVT, LL, RL);
[all...]
H A DLegalizeVectorTypes.cpp854 SDValue LL, LH, RL, RH; local
863 RL = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, InNVT, N->getOperand(1),
869 Lo = DAG.getNode(N->getOpcode(), DL, LoVT, LL, RL, N->getOperand(2));
H A DDAGCombiner.cpp2482 SDValue LL, LR, RL, RR, CC0, CC1; local
2650 if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){
2659 LR.getValueType(), LL, RL);
2666 LR.getValueType(), LL, RL);
2673 LR.getValueType(), LL, RL);
2679 if (LL == RR && LR == RL) {
2681 std::swap(RL, RR);
2683 if (LL == RL && LR == RR) {
3096 SDValue LL, LR, RL, RR, CC0, CC1; local
3165 if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, R
[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.cpp622 SDValue LL, RL, AddendL, AddendH; local
625 RL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
639 AddendL, LL, RL);
647 AddendL, LL, RL);
658 AddendL, LL, RL);
661 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.h1319 ReturnStmt(SourceLocation RL) argument
1320 : Stmt(ReturnStmtClass), RetExpr(0), RetLoc(RL), NRVOCandidate(0) { }
1322 ReturnStmt(SourceLocation RL, Expr *E, const VarDecl *NRVOCandidate) argument
1323 : Stmt(ReturnStmtClass), RetExpr((Stmt*) E), RetLoc(RL),
/external/clang/lib/AST/
H A DASTContext.cpp5119 const ASTRecordLayout &RL = Ctx->getASTRecordLayout(RD); local
5120 S += llvm::utostr(RL.getFieldOffset(FD->getFieldIndex()));

Completed in 537 milliseconds