Searched refs:RL (Results 1 - 22 of 22) 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 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();
H A DCGClass.cpp790 const CGRecordLayout &RL = local
792 const CGBitFieldInfo &BFInfo = RL.getBitFieldInfo(FirstField);
/external/libvpx/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.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/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 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...]
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));
/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/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 DExprConstant.cpp1640 const ASTRecordLayout *RL = 0) {
1641 if (!RL) {
1643 RL = &Info.Ctx.getASTRecordLayout(Derived);
1646 Obj.getLValueOffset() += RL->getBaseClassOffset(Base);
1693 const ASTRecordLayout *RL = 0) {
1694 if (!RL) {
1696 RL = &Info.Ctx.getASTRecordLayout(FD->getParent());
1700 LVal.Offset += Info.Ctx.toCharUnitsFromBits(RL->getFieldOffset(I));
6836 const ASTRecordLayout &RL = Info.Ctx.getASTRecordLayout(RD);
6838 assert(i < RL
[all...]
H A DASTContext.cpp5119 const ASTRecordLayout &RL = Ctx->getASTRecordLayout(RD); local
5120 S += llvm::utostr(RL.getFieldOffset(FD->getFieldIndex()));
/external/chromium_org/third_party/libjingle/source/talk/media/testdata/
H A Dh264-svc-99-640x360.rtpdump52 �����5�]��ߺ����vJ�ƿ�Ŝ`���~<k�c�L�5��{ ��vݯ��,��vf�0�QIe�ආ��.�?���������=�K�n��X(������}/�Udz��\ t����`o�<F �Cw�@2�gH��Hł�n7^�4�6��Y��4V(= ��t%m�2j~���� O��+[ �����0)�o����`��c�xt��� �%��H.�òn���ϤS��' ��U�,��ݏ�?(`f?� ��K�8���f_��t�X/�g�Ok�4��;�.RL�@��}ҭ>߆�������� ��a�� ��V��vh�S��`�)3(�p�;��4
1254 օ��� �Cn~ߍ�=২�g��g�E��p���#�D������W�NQTx*���������:�3�~Z�b�������z�fO���48���]�OC<��| # ����@��D��|�Q_�<;.�ct.��l.Eƻʎ��`d��8�C��za����q�^n_~t��>/ۢ�G��9�r��u�RL$�R��o롣�'s��.r֨ȗ^�{g!d!�=MQ�l��{q�gV�7�p�Is������?`V�p��`����k��޹���9љGT� 7��"��]�
8679 x �k�!��$L��g��;c� , �x�����[��8�~��ؚ�Z�|� �ܿ�8�B��*�K���6C�s�/�ӛ�԰����1�4.V/�Wֵ�xvm;�$.${pQ��M��e�d����:��)����ၜ`����������;J%0 /v����mJ%K���r�cq����*� [\���%n� 0��Η��sC������:^�> �v��/߬��Uj��`��Y${�ωK�O�Z�E���!%<�c(b��!��f��f��Y"�r�8>���;�.�� �!���+:����汜��";���=�X��^��7g���]iTۻ�n��ٮ!<�?a���� (�z�f�T"qNѓ��w,�{�<�~̪���Z�^��a�G7����"�[e���7X���ц���1U~��������0�&�.� @RL�w��d�JOQ͘x��Cӹ�ʊ(�bz�c��{m�~%�ߩ*�`�t#�#l�LL�U ��A]�\�z8�� T��&�*�9�������p���T��p��x�΅1���O/���@��cp�1}m_��� _�7����Zً��I*�$���\��wka�S�BM�4%��t�&X�́7�q-��]W̽� ̮��s���$��D�m��3���5ue|��q�*&���]��O���a;П����=�m�\�� �+>��}��6��/Z���2��/��ⰹ���eVm�7�hN�����\�
9905 ����,YG�����Zv��F:#���x�w�paԓ8_D����� =_ɭwLҗK9��y~}�Żh����K��ZQw�Qǻ6=� f�&Yu� Z;�o�6RL�I,e�!��%����U�����W^OXپy�³э��{\K6����q"�q$�[ 4��v�
10335 �g<���{�=��V�Ԕo ]���?ƽ0��I-�m�}�@��,��c(��m���f��f��vH�r�8>��E��4��WrJΠ�K� B=u���W_SB�2�?� �ye�Ҵ�7��w.b�iY���?z���Y���f���# ����J�eä�u�GF��|7�X�c������A����-������q}FBꗮ�!U.j����*�����9� $�v�p�x5� �y��}P�?k,� ��fy� ���7�YC5pyI4��WQt���N���D��n#�T�l�C ��K�v��SԀ�2ZT/�E�,M���3�-*��+f�o!����+� e B�W�i(��,cc���c676����L�*�����_� ��EF���L11�=�Ej�N��/��NΓ:�n���eo�����{�K�"�Vz��io4X�0iCnf ������������h7�<�}h\��/�ke0��i�ٻ\.�_8j}���+�P`�C��,��V�7�0R��C�� ������˶�<��dۢ.��HcTz7gT��)y��H���XQZ�U5����;]��H���[��l�,�Vk Ϗ� L4�M&�j�v᷆U 5��y�b�D� ��j����~��S�Ub�ߡk�X#m��4p�2S������jw=�6�4 p�bV��4wO�I�J�� ��a��&��³�fdxKˣ��S��N,� ��`��a�y�����d�`�\����=X)�Z�pǾRL׷��G�1v�}C�� ёV tD#�y��zl?N"zz��#�{1��oG!�4�Lm]$����)��k٪�jDp�����q���[7�:\ �Op�TSQ;���ߗ����S��D6��M�l�Ƭ]��ёၴ�q+�.�Ht�ia�ӂ-`�� ^�j�5y+�K��Ҹ1J$)�ޞ�7��D�1�쎩+�*%٠�j (����e�+mq�G4��k*A-�\;y!�C �< ǚ2��kM<7����M�qs'^��y�-�X k���c6p�61w.�Os)����ד8#b�UF�| ¼n�栫,�`�i�l��"Nz\*^ �6$y�o���
10426 �Кx��Ç�.�?�p�@�{F] .��xKh&D�D}���O����n�1� ��Yo�kVv�(�G��g�Q���bȺ��Ʀ܍�%����ҭX�����u �F�6eh�31���&�@+=鸫L���3Tv�G�F� ��&*�����O)��/O�ك[�L�����e���!��ɇ�x�[�!븁� ��)�� �B�f��l%m��FQ!��Np� ��P`��J ���� 0��H>6���*A �X� �Ls��X=��3櫾�o��GӲ�uO��%�)���!�����N\5���N��@���s�sQA1�[w����%2f@�2\T�BN�h�ff3%�;��_ ��lv5'NIR�7"�da��pS���R���u4�g�K �sP;I!�c�E�<�X�U�T�^���.�=�pR�Y�)�aX�^VN���_����M��8��ᖑi'҄��Zy�q,xع��yxԴ�L-)��24�W]dž�Ҡ���a�vz�w�����R@��v5tA��(b�o<�]#_[y�!��� Եj�q�� �(:0�6�> �����%��ۋ�EI��;h���xMS�鶹t�c���҃U���qxMh Q.�@�`@�d�e"����Opӊ9��|�k���� �G�:�R����$���;xl7p"�!4u��4�#�{D��� �@��_|���0\��rj �ނ� w;mM����D�\��"�u�8�;m�R�xʇ�6� ��F�=<��O�gF̕-4�q'�7�%ᾕw��ٳ5>��\�Zq�l!RLƼVtMXͪȼ�?1�t�В^7�%`�3ģIb��O�7�Ý]�����w����)F/�u>��c��{����6PSݳ��7

Completed in 429 milliseconds