Home
last modified time | relevance | path

Searched refs:RL (Results 1 – 25 of 28) sorted by relevance

12

/external/llvm/test/CodeGen/Generic/
Di128-addsub.ll3 define void @test_add(i64 %AL, i64 %AH, i64 %BL, i64 %BH, i64* %RL, i64* %RH) {
15 store i64 %tmp1617, i64* %RL
22 define void @test_sub(i64 %AL, i64 %AH, i64 %BL, i64 %BH, i64* %RL, i64* %RH) {
34 store i64 %tmp1617, i64* %RL
/external/clang/lib/CodeGen/
DCGObjCRuntime.cpp43 const ASTRecordLayout *RL; in LookupFieldBitOffset() local
45 RL = &CGM.getContext().getASTObjCImplementationLayout(ID); in LookupFieldBitOffset()
47 RL = &CGM.getContext().getASTObjCInterfaceLayout(Container); in LookupFieldBitOffset()
62 assert(Index < RL->getFieldCount() && "Ivar is not inside record layout!"); in LookupFieldBitOffset()
64 return RL->getFieldOffset(Index); in LookupFieldBitOffset()
115 const ASTRecordLayout &RL = in EmitValueForIvarAtOffset() local
117 uint64_t TypeSizeInBits = CGF.CGM.getContext().toBits(RL.getSize()); in EmitValueForIvarAtOffset()
DCGRecordLayoutBuilder.cpp361 const ASTRecordLayout &RL = Types.getContext().getASTRecordLayout(RD); in MakeInfo() local
362 uint64_t ContainingTypeSizeInBits = Types.getContext().toBits(RL.getSize()); in MakeInfo()
363 unsigned ContainingTypeAlign = Types.getContext().toBits(RL.getAlignment()); in MakeInfo()
1006 CGRecordLayout *RL = in ComputeRecordLayout() local
1010 RL->NonVirtualBases.swap(Builder.NonVirtualBases); in ComputeRecordLayout()
1011 RL->CompleteObjectVirtualBases.swap(Builder.VirtualBases); in ComputeRecordLayout()
1014 RL->FieldInfo.swap(Builder.Fields); in ComputeRecordLayout()
1017 RL->BitFields.swap(Builder.BitFields); in ComputeRecordLayout()
1025 RL->dump(); in ComputeRecordLayout()
1052 dyn_cast<llvm::StructType>(RL->getLLVMType()); in ComputeRecordLayout()
[all …]
DCGDebugInfo.cpp1033 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD); in CollectCXXBases() local
1050 BaseOffset = RL.getBaseClassOffsetInBits(Base); in CollectCXXBases()
1159 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD); in CollectVTableInfo() local
1162 if (RL.getPrimaryBase()) in CollectVTableInfo()
1354 const ASTRecordLayout &RL = CGM.getContext().getASTObjCInterfaceLayout(ID); in CreateType() local
1389 : RL.getFieldOffset(FieldNo); in CreateType()
1864 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD); in CreateLimitedType() local
1865 if (const CXXRecordDecl *PBase = RL.getPrimaryBase()) { in CreateLimitedType()
DCGExprScalar.cpp1516 const ASTRecordLayout &RL = CGF.getContext().getASTRecordLayout(RD); in VisitOffsetOfExpr() local
1527 assert(i < RL.getFieldCount() && "offsetof field in wrong type"); in VisitOffsetOfExpr()
1530 int64_t OffsetInt = RL.getFieldOffset(i) / in VisitOffsetOfExpr()
1549 const ASTRecordLayout &RL = CGF.getContext().getASTRecordLayout(RD); in VisitOffsetOfExpr() local
1557 int64_t OffsetInt = RL.getBaseClassOffsetInBits(BaseRD) / in VisitOffsetOfExpr()
DCGExpr.cpp2002 const CGRecordLayout &RL = in EmitLValueForBitfield() local
2004 const CGBitFieldInfo &Info = RL.getBitFieldInfo(Field); in EmitLValueForBitfield()
2119 const CGRecordLayout &RL = in EmitLValueForFieldInitialization() local
2121 unsigned idx = RL.getLLVMFieldNo(Field); in EmitLValueForFieldInitialization()
DCGObjCMac.cpp3854 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD); in BuildAggrIvarLayout() local
3855 FieldOffset = (RL.getFieldOffset(i) / ByteSizeInBits) - FirstFieldDelta; in BuildAggrIvarLayout()
5091 const ASTRecordLayout &RL = in GetClassSizeInfo() local
5095 InstanceSize = RL.getDataSize().getQuantity(); in GetClassSizeInfo()
5098 if (!RL.getFieldCount()) in GetClassSizeInfo()
5101 InstanceStart = RL.getFieldOffset(0) / CGM.getContext().getCharWidth(); in GetClassSizeInfo()
/external/llvm/lib/CodeGen/SelectionDAG/
DLegalizeTypesGeneric.cpp441 SDValue LL, LH, RL, RH, CL, CH; in SplitRes_SELECT() local
444 GetSplitOp(N->getOperand(2), RL, RH); in SplitRes_SELECT()
459 Lo = DAG.getNode(N->getOpcode(), dl, LL.getValueType(), CL, LL, RL); in SplitRes_SELECT()
465 SDValue LL, LH, RL, RH; in SplitRes_SELECT_CC() local
468 GetSplitOp(N->getOperand(3), RL, RH); in SplitRes_SELECT_CC()
471 N->getOperand(1), LL, RL, N->getOperand(4)); in SplitRes_SELECT_CC()
DLegalizeIntegerTypes.cpp1897 SDValue LL, LH, RL, RH; in ExpandIntRes_Logical() local
1899 GetExpandedInteger(N->getOperand(1), RL, RH); in ExpandIntRes_Logical()
1900 Lo = DAG.getNode(N->getOpcode(), dl, LL.getValueType(), LL, RL); in ExpandIntRes_Logical()
1915 SDValue LL, LH, RL, RH; in ExpandIntRes_MUL() local
1917 GetExpandedInteger(N->getOperand(1), RL, RH); in ExpandIntRes_MUL()
1929 Lo = DAG.getNode(ISD::UMUL_LOHI, dl, DAG.getVTList(NVT, NVT), LL, RL); in ExpandIntRes_MUL()
1935 Lo = DAG.getNode(ISD::MUL, dl, NVT, LL, RL); in ExpandIntRes_MUL()
1936 Hi = DAG.getNode(ISD::MULHU, dl, NVT, LL, RL); in ExpandIntRes_MUL()
1944 Lo = DAG.getNode(ISD::SMUL_LOHI, dl, DAG.getVTList(NVT, NVT), LL, RL); in ExpandIntRes_MUL()
1950 Lo = DAG.getNode(ISD::MUL, dl, NVT, LL, RL); in ExpandIntRes_MUL()
[all …]
DDAGCombiner.cpp2403 SDValue LL, LR, RL, RR, CC0, CC1; in visitAND() local
2542 if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){ in visitAND()
2551 LR.getValueType(), LL, RL); in visitAND()
2558 LR.getValueType(), LL, RL); in visitAND()
2565 LR.getValueType(), LL, RL); in visitAND()
2571 if (LL == RR && LR == RL) { in visitAND()
2573 std::swap(RL, RR); in visitAND()
2575 if (LL == RL && LR == RR) { in visitAND()
2957 SDValue LL, LR, RL, RR, CC0, CC1; in visitOR() local
3014 if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){ in visitOR()
[all …]
DLegalizeVectorTypes.cpp790 SDValue LL, LH, RL, RH; in SplitVecRes_SETCC() local
798 RL = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, InNVT, N->getOperand(1), in SplitVecRes_SETCC()
803 Lo = DAG.getNode(N->getOpcode(), DL, LoVT, LL, RL, N->getOperand(2)); in SplitVecRes_SETCC()
/external/libvpx/vp8/common/ppc/
Dloopfilter_filters_altivec.asm718 .macro RL V, R, P macro
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 v24, r9, r4
[all …]
/external/llvm/include/llvm/MC/
DMCRegisterInfo.h165 const uint16_t *RL, in InitMCRegisterInfo() argument
172 RegLists = RL; in InitMCRegisterInfo()
/external/llvm/include/llvm/ADT/
DImmutableSet.h519 TreeTy *RL = getLeft(R); in balanceTree() local
522 if (getHeight(RR) >= getHeight(RL)) in balanceTree()
523 return createNode(createNode(L,V,RL), R, RR); in balanceTree()
525 assert(!isEmpty(RL) && "RL cannot be empty because it has a height >= 1"); in balanceTree()
527 TreeTy *RLL = getLeft(RL); in balanceTree()
528 TreeTy *RLR = getRight(RL); in balanceTree()
530 return createNode(createNode(L,V,RLL), RL, createNode(RLR,R,RR)); in balanceTree()
/external/llvm/lib/Target/XCore/
DXCoreISelLowering.cpp668 SDValue LL, RL, AddendL, AddendH; in TryExpandADDWithMul() local
671 RL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, in TryExpandADDWithMul()
685 AddendL, LL, RL); in TryExpandADDWithMul()
693 AddendL, LL, RL); in TryExpandADDWithMul()
704 AddendL, LL, RL); in TryExpandADDWithMul()
707 LH = DAG.getNode(ISD::MUL, dl, MVT::i32, LH, RL); in TryExpandADDWithMul()
/external/clang/include/clang/AST/
DStmt.h1322 ReturnStmt(SourceLocation RL) in ReturnStmt() argument
1323 : Stmt(ReturnStmtClass), RetExpr(0), RetLoc(RL), NRVOCandidate(0) { } in ReturnStmt()
1325 ReturnStmt(SourceLocation RL, Expr *E, const VarDecl *NRVOCandidate) in ReturnStmt() argument
1326 : Stmt(ReturnStmtClass), RetExpr((Stmt*) E), RetLoc(RL), in ReturnStmt()
/external/opencv/ml/src/
Dmlboost.cpp584 double LL = 0, RL = 0, LR, RR; in find_surrogate_split_ord() local
621 RL += w; RR -= w; in find_surrogate_split_ord()
622 if( RL + LR > best_val && sorted[i].val + epsilon < sorted[i+1].val ) in find_surrogate_split_ord()
624 best_val = RL + LR; in find_surrogate_split_ord()
Dmltree.cpp2063 int LL = 0, RL = 0, LR, RR; in find_surrogate_split_ord() local
2095 RL++; RR--; in find_surrogate_split_ord()
2096 if( RL + LR > _best_val && sorted[i].val + epsilon < sorted[i+1].val ) in find_surrogate_split_ord()
2098 best_val = RL + LR; in find_surrogate_split_ord()
2107 double LL = 0, RL = 0, LR, RR; in find_surrogate_split_ord() local
2146 RL += w; RR -= w; in find_surrogate_split_ord()
2147 if( RL + LR > best_val && sorted[i].val + epsilon < sorted[i+1].val ) in find_surrogate_split_ord()
2149 best_val = RL + LR; in find_surrogate_split_ord()
/external/clang/lib/AST/
DExprConstant.cpp1300 const ASTRecordLayout *RL = 0) { in HandleLValueDirectBase() argument
1301 if (!RL) RL = &Info.Ctx.getASTRecordLayout(Derived); in HandleLValueDirectBase()
1302 Obj.getLValueOffset() += RL->getBaseClassOffset(Base); in HandleLValueDirectBase()
1336 const ASTRecordLayout *RL = 0) { in HandleLValueMember() argument
1337 if (!RL) in HandleLValueMember()
1338 RL = &Info.Ctx.getASTRecordLayout(FD->getParent()); in HandleLValueMember()
1341 LVal.Offset += Info.Ctx.toCharUnitsFromBits(RL->getFieldOffset(I)); in HandleLValueMember()
5283 const ASTRecordLayout &RL = Info.Ctx.getASTRecordLayout(RD); in VisitOffsetOfExpr() local
5285 assert(i < RL.getFieldCount() && "offsetof field in wrong type"); in VisitOffsetOfExpr()
5286 Result += Info.Ctx.toCharUnitsFromBits(RL.getFieldOffset(i)); in VisitOffsetOfExpr()
[all …]
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/de-DE/
Dde-DE_kdt_posd.pkb100 …��Y�)�P�M`�����&��7A4�-��ѯDy��d&�T�����77ML��JFe^M��4��,� :o_ RL P�@������rm��qĂ�o@…
/external/quake/quake/src/QW/
Dqwchangelog.txt140 jump into the RL room on dm6, or hit the secret light on e4m1.
Dqwrlnote.txt246 jump into the RL room on dm6, or hit the secret light on e4m1.
/external/clang/lib/Serialization/
DASTReader.cpp118 unsigned LL = 0, RL = 0; in EqualConcatenations() local
123 RL += R[I].Data.size(); in EqualConcatenations()
125 if (LL != RL) in EqualConcatenations()
127 if (LL == 0 && RL == 0) in EqualConcatenations()
/external/qemu/distrib/jpeg-6b/
Dtestimg.ppm4RL�OI�NL�ON�^c�ag�it�nz�du�Vj�Qi�Uo�Wv�Vt�Xp�^p�ny�w��ks�Xa�`m�`m�bo�s}숊́|�th�yjskXON:_VG�qg������…
/external/jpeg/
Dtestimg.ppm4RL�OI�NL�ON�^c�ag�it�nz�du�Vj�Qi�Uo�Wv�Vt�Xp�^p�ny�w��ks�Xa�`m�`m�bo�s}숊́|�th�yjskXON:_VG�qg������…

12