Searched refs:RL (Results 1 - 20 of 20) sorted by relevance

/external/clang/lib/CodeGen/
H A DCGObjCRuntime.cpp43 const ASTRecordLayout *RL; local
45 RL = &CGM.getContext().getASTObjCImplementationLayout(ID);
47 RL = &CGM.getContext().getASTObjCInterfaceLayout(Container);
62 assert(Index < RL->getFieldCount() && "Ivar is not inside record layout!");
64 return RL->getFieldOffset(Index);
115 const ASTRecordLayout &RL = local
117 uint64_t TypeSizeInBits = CGF.CGM.getContext().toBits(RL.getSize());
H A DCGRecordLayoutBuilder.cpp363 const ASTRecordLayout &RL = Types.getContext().getASTRecordLayout(RD);
364 uint64_t ContainingTypeSizeInBits = Types.getContext().toBits(RL.getSize());
365 unsigned ContainingTypeAlign = Types.getContext().toBits(RL.getAlignment());
1012 CGRecordLayout *RL = local
1016 RL->NonVirtualBases.swap(Builder.NonVirtualBases);
1017 RL->CompleteObjectVirtualBases.swap(Builder.VirtualBases);
1020 RL->FieldInfo.swap(Builder.Fields);
1023 RL->BitFields.swap(Builder.BitFields);
1031 RL->dump();
1058 dyn_cast<llvm::StructType>(RL
[all...]
H A DCGDebugInfo.cpp1054 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD); local
1071 BaseOffset = CGM.getContext().toBits(RL.getBaseClassOffset(Base));
1180 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD); local
1183 if (RL.getPrimaryBase())
1377 const ASTRecordLayout &RL = CGM.getContext().getASTObjCInterfaceLayout(ID); local
1412 ? FieldNo+1 : RL.getFieldOffset(FieldNo);
1897 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD); local
1898 if (const CXXRecordDecl *PBase = RL.getPrimaryBase()) {
H A DCGExprScalar.cpp1519 const ASTRecordLayout &RL = CGF.getContext().getASTRecordLayout(RD); local
1530 assert(i < RL.getFieldCount() && "offsetof field in wrong type");
1533 int64_t OffsetInt = RL.getFieldOffset(i) /
1552 const ASTRecordLayout &RL = CGF.getContext().getASTRecordLayout(RD); local
1560 CharUnits OffsetInt = RL.getBaseClassOffset(BaseRD);
H A DCGExpr.cpp2181 const CGRecordLayout &RL = local
2183 const CGBitFieldInfo &Info = RL.getBitFieldInfo(field);
2272 const CGRecordLayout &RL = local
2274 unsigned idx = RL.getLLVMFieldNo(Field);
H A DCGObjCMac.cpp3866 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD); local
3867 FieldOffset = (RL.getFieldOffset(i) / ByteSizeInBits) - FirstFieldDelta;
5105 const ASTRecordLayout &RL = local
5109 InstanceSize = RL.getDataSize().getQuantity();
5112 if (!RL.getFieldCount())
5115 InstanceStart = RL.getFieldOffset(0) / CGM.getContext().getCharWidth();
/external/libvpx/vp8/common/ppc/
H A Dloopfilter_filters_altivec.asm718 .macro RL V, R, P
776 RL v16, r9, r4
777 RL v17, r9, r4
778 RL v18, r9, r4
779 RL v19, r9, r4
780 RL v20, r9, r4
781 RL v21, r9, r4
782 RL v22, r9, r4
783 RL v23, r9, r4
784 RL v2
[all...]
/external/llvm/include/llvm/ADT/
H A DImmutableSet.h519 TreeTy *RL = getLeft(R); local
522 if (getHeight(RR) >= getHeight(RL))
523 return createNode(createNode(L,V,RL), R, RR);
525 assert(!isEmpty(RL) && "RL cannot be empty because it has a height >= 1");
527 TreeTy *RLL = getLeft(RL);
528 TreeTy *RLR = getRight(RL);
530 return createNode(createNode(L,V,RLL), RL, createNode(RLR,R,RR));
/external/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeTypesGeneric.cpp451 SDValue LL, LH, RL, RH, CL, CH; local
454 GetSplitOp(N->getOperand(2), RL, RH);
469 Lo = DAG.getNode(N->getOpcode(), dl, LL.getValueType(), CL, LL, RL);
475 SDValue LL, LH, RL, RH; local
478 GetSplitOp(N->getOperand(3), RL, RH);
481 N->getOperand(1), LL, RL, N->getOperand(4));
H A DLegalizeIntegerTypes.cpp1893 SDValue LL, LH, RL, RH; local
1895 GetExpandedInteger(N->getOperand(1), RL, RH);
1896 Lo = DAG.getNode(N->getOpcode(), dl, LL.getValueType(), LL, RL);
1911 SDValue LL, LH, RL, RH; local
1913 GetExpandedInteger(N->getOperand(1), RL, RH);
1925 Lo = DAG.getNode(ISD::UMUL_LOHI, dl, DAG.getVTList(NVT, NVT), LL, RL);
1931 Lo = DAG.getNode(ISD::MUL, dl, NVT, LL, RL);
1932 Hi = DAG.getNode(ISD::MULHU, dl, NVT, LL, RL);
1940 Lo = DAG.getNode(ISD::SMUL_LOHI, dl, DAG.getVTList(NVT, NVT), LL, RL);
1946 Lo = DAG.getNode(ISD::MUL, dl, NVT, LL, RL);
[all...]
H A DDAGCombiner.cpp2408 SDValue LL, LR, RL, RR, CC0, CC1; local
2564 if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){
2573 LR.getValueType(), LL, RL);
2580 LR.getValueType(), LL, RL);
2587 LR.getValueType(), LL, RL);
2593 if (LL == RR && LR == RL) {
2595 std::swap(RL, RR);
2597 if (LL == RL && LR == RR) {
3007 SDValue LL, LR, RL, RR, CC0, CC1; local
3064 if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, R
[all...]
H A DLegalizeVectorTypes.cpp831 SDValue LL, LH, RL, RH; local
839 RL = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, InNVT, N->getOperand(1),
844 Lo = DAG.getNode(N->getOpcode(), DL, LoVT, LL, RL, N->getOperand(2));
/external/llvm/lib/Target/XCore/
H A DXCoreISelLowering.cpp669 SDValue LL, RL, AddendL, AddendH; local
672 RL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
686 AddendL, LL, RL);
694 AddendL, LL, RL);
705 AddendL, LL, RL);
708 LH = DAG.getNode(ISD::MUL, dl, MVT::i32, LH, RL);
/external/clang/include/clang/AST/
H A DStmt.h1327 ReturnStmt(SourceLocation RL) argument
1328 : Stmt(ReturnStmtClass), RetExpr(0), RetLoc(RL), NRVOCandidate(0) { }
1330 ReturnStmt(SourceLocation RL, Expr *E, const VarDecl *NRVOCandidate) argument
1331 : Stmt(ReturnStmtClass), RetExpr((Stmt*) E), RetLoc(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/lib/AST/
H A DExprConstant.cpp1299 const ASTRecordLayout *RL = 0) {
1300 if (!RL) {
1302 RL = &Info.Ctx.getASTRecordLayout(Derived);
1305 Obj.getLValueOffset() += RL->getBaseClassOffset(Base);
1339 const ASTRecordLayout *RL = 0) {
1340 if (!RL) {
1342 RL = &Info.Ctx.getASTRecordLayout(FD->getParent());
1346 LVal.Offset += Info.Ctx.toCharUnitsFromBits(RL->getFieldOffset(I));
5246 const ASTRecordLayout &RL = Info.Ctx.getASTRecordLayout(RD); local
5248 assert(i < RL
5268 const ASTRecordLayout &RL = Info.Ctx.getASTRecordLayout(RD); local
[all...]
H A DASTContext.cpp4760 const ASTRecordLayout &RL = Ctx->getASTRecordLayout(RD); local
4761 S += llvm::utostr(RL.getFieldOffset(FD->getFieldIndex()));
/external/clang/lib/Serialization/
H A DASTReader.cpp124 unsigned LL = 0, RL = 0; local
129 RL += R[I].Data.size();
131 if (LL != RL)
133 if (LL == 0 && RL == 0)
/external/clang/lib/Sema/
H A DSemaExpr.cpp7633 DeclRefExpr *RL = dyn_cast<DeclRefExpr>(OL->getBase()->IgnoreImpCasts()); local
7635 if (RL && RR && RL->getDecl() == RR->getDecl())

Completed in 459 milliseconds