/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/ |
D | InstCombineVectorOps.cpp | 123 Instruction *InstCombiner::visitExtractElementInst(ExtractElementInst &EI) { in visitExtractElementInst() argument 125 if (isa<UndefValue>(EI.getOperand(0))) in visitExtractElementInst() 126 return ReplaceInstUsesWith(EI, UndefValue::get(EI.getType())); in visitExtractElementInst() 129 if (isa<ConstantAggregateZero>(EI.getOperand(0))) in visitExtractElementInst() 130 return ReplaceInstUsesWith(EI, Constant::getNullValue(EI.getType())); in visitExtractElementInst() 132 if (ConstantVector *C = dyn_cast<ConstantVector>(EI.getOperand(0))) { in visitExtractElementInst() 143 return ReplaceInstUsesWith(EI, op0); in visitExtractElementInst() 148 if (ConstantInt *IdxC = dyn_cast<ConstantInt>(EI.getOperand(1))) { in visitExtractElementInst() 150 unsigned VectorWidth = EI.getVectorOperandType()->getNumElements(); in visitExtractElementInst() 155 return ReplaceInstUsesWith(EI, UndefValue::get(EI.getType())); in visitExtractElementInst() [all …]
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
D | DebugLocStream.h | 115 size_t EI = getIndex(E); in getBytes() local 117 .slice(Entries[EI].ByteOffset, getNumBytes(EI)); in getBytes() 120 size_t EI = getIndex(E); in getComments() local 122 .slice(Entries[EI].CommentOffset, getNumComments(EI)); in getComments() 141 size_t getNumBytes(size_t EI) const { in getNumBytes() argument 142 if (EI + 1 == Entries.size()) in getNumBytes() 143 return DWARFBytes.size() - Entries[EI].ByteOffset; in getNumBytes() 144 return Entries[EI + 1].ByteOffset - Entries[EI].ByteOffset; in getNumBytes() 146 size_t getNumComments(size_t EI) const { in getNumComments() argument 147 if (EI + 1 == Entries.size()) in getNumComments() [all …]
|
D | DwarfAccelTable.cpp | 74 for (StringMap<DataArray>::iterator EI = Entries.begin(), EE = Entries.end(); in FinalizeTable() local 75 EI != EE; ++EI) { in FinalizeTable() 78 std::stable_sort(EI->second.Values.begin(), EI->second.Values.end(), compareDIEs); in FinalizeTable() 79 EI->second.Values.erase( in FinalizeTable() 80 std::unique(EI->second.Values.begin(), EI->second.Values.end()), in FinalizeTable() 81 EI->second.Values.end()); in FinalizeTable() 83 HashData *Entry = new (Allocator) HashData(EI->getKey(), EI->second); in FinalizeTable() 268 for (StringMap<DataArray>::const_iterator EI = Entries.begin(), in print() local 270 EI != EE; ++EI) { in print() 271 O << "Name: " << EI->getKeyData() << "\n"; in print() [all …]
|
/external/swiftshader/third_party/LLVM/include/llvm/Support/ |
D | GraphWriter.h | 66 child_iterator EI = GTraits::child_begin(Node); in getEdgeSourceLabels() local 70 for (unsigned i = 0; EI != EE && i != 64; ++EI, ++i) { in getEdgeSourceLabels() 71 std::string label = DTraits.getEdgeSourceLabel(Node, EI); in getEdgeSourceLabels() 84 if (EI != EE && hasEdgeSourceLabels) in getEdgeSourceLabels() 216 child_iterator EI = GTraits::child_begin(Node); in writeNode() local 218 for (unsigned i = 0; EI != EE && i != 64; ++EI, ++i) in writeNode() 219 if (!DTraits.isNodeHidden(*EI)) in writeNode() 220 writeEdge(Node, i, EI); in writeNode() 221 for (; EI != EE; ++EI) in writeNode() 222 if (!DTraits.isNodeHidden(*EI)) in writeNode() [all …]
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineVectorOps.cpp | 68 Instruction *InstCombiner::scalarizePHI(ExtractElementInst &EI, PHINode *PN) { in scalarizePHI() argument 77 if (EI.getIndexOperand() == EU->getIndexOperand()) in scalarizePHI() 101 PHINode::Create(EI.getType(), PN->getNumIncomingValues(), ""), *PN)); in scalarizePHI() 106 Value *Elt = EI.getIndexOperand(); in scalarizePHI() 143 return &EI; in scalarizePHI() 146 Instruction *InstCombiner::visitExtractElementInst(ExtractElementInst &EI) { in visitExtractElementInst() argument 148 EI.getVectorOperand(), EI.getIndexOperand(), DL, TLI, DT, AC)) in visitExtractElementInst() 149 return replaceInstUsesWith(EI, V); in visitExtractElementInst() 153 if (Constant *C = dyn_cast<Constant>(EI.getOperand(0))) in visitExtractElementInst() 155 return replaceInstUsesWith(EI, C->getAggregateElement(0U)); in visitExtractElementInst() [all …]
|
/external/llvm/include/llvm/Support/ |
D | GraphWriter.h | 70 child_iterator EI = GTraits::child_begin(Node); in getEdgeSourceLabels() local 74 for (unsigned i = 0; EI != EE && i != 64; ++EI, ++i) { in getEdgeSourceLabels() 75 std::string label = DTraits.getEdgeSourceLabel(Node, EI); in getEdgeSourceLabels() 88 if (EI != EE && hasEdgeSourceLabels) in getEdgeSourceLabels() 230 child_iterator EI = GTraits::child_begin(Node); in writeNode() local 232 for (unsigned i = 0; EI != EE && i != 64; ++EI, ++i) in writeNode() 233 if (!DTraits.isNodeHidden(*EI)) in writeNode() 234 writeEdge(Node, i, EI); in writeNode() 235 for (; EI != EE; ++EI) in writeNode() 236 if (!DTraits.isNodeHidden(*EI)) in writeNode() [all …]
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/ |
D | Analysis.cpp | 45 EI = EB, in ComputeLinearIndex() local 47 EI != EE; ++EI) { in ComputeLinearIndex() 48 if (Indices && *Indices == unsigned(EI - EB)) in ComputeLinearIndex() 49 return ComputeLinearIndex(*EI, Indices+1, IndicesEnd, CurIndex); in ComputeLinearIndex() 50 CurIndex = ComputeLinearIndex(*EI, 0, 0, CurIndex); in ComputeLinearIndex() 83 EI = EB, in ComputeValueVTs() local 85 EI != EE; ++EI) in ComputeValueVTs() 86 ComputeValueVTs(TLI, *EI, ValueVTs, Offsets, in ComputeValueVTs() 87 StartingOffset + SL->getElementOffset(EI - EB)); in ComputeValueVTs()
|
D | ScheduleDAGPrinter.cpp | 54 SUnitIterator EI, in getEdgeAttributes() 56 if (EI.isArtificialDep()) in getEdgeAttributes() 58 if (EI.isCtrlDep()) in getEdgeAttributes()
|
D | DwarfEHPrepare.cpp | 567 if (EHExceptionInst *EI = dyn_cast<EHExceptionInst>(II++)) { in MoveExceptionValueCalls() local 569 if (!EI->use_empty()) { in MoveExceptionValueCalls() 575 if (EI == CallAtStart) in MoveExceptionValueCalls() 577 EI->replaceAllUsesWith(CallAtStart); in MoveExceptionValueCalls() 579 EI->eraseFromParent(); in MoveExceptionValueCalls() 631 if (EHExceptionInst *EI = dyn_cast<EHExceptionInst>(II++)) { in MoveExceptionValueCalls() local 634 EI->replaceAllUsesWith(SSA.GetValueAtEndOfBlock(BB)); in MoveExceptionValueCalls() 635 EI->eraseFromParent(); in MoveExceptionValueCalls()
|
/external/swiftshader/third_party/LLVM/lib/Analysis/ |
D | BranchProbabilityInfo.cpp | 288 for (SmallPtrSet<BasicBlock *, 8>::iterator EI = BackEdges.begin(), in calcLoopBranchHeuristics() local 289 EE = BackEdges.end(); EI != EE; ++EI) { in calcLoopBranchHeuristics() 290 BasicBlock *Back = *EI; in calcLoopBranchHeuristics() 300 for (SmallPtrSet<BasicBlock *, 8>::iterator EI = InEdges.begin(), in calcLoopBranchHeuristics() local 301 EE = InEdges.end(); EI != EE; ++EI) { in calcLoopBranchHeuristics() 302 BasicBlock *Back = *EI; in calcLoopBranchHeuristics() 313 for (SmallPtrSet<BasicBlock *, 8>::iterator EI = ExitingEdges.begin(), in calcLoopBranchHeuristics() local 314 EE = ExitingEdges.end(); EI != EE; ++EI) { in calcLoopBranchHeuristics() 315 BasicBlock *Exiting = *EI; in calcLoopBranchHeuristics()
|
D | ProfileInfo.cpp | 429 for (std::set<Edge>::iterator EI = Edges.begin(), EE = Edges.end(); in splitBlock() local 430 EI != EE; ++EI) { in splitBlock() 431 Edge newedge = getEdge(New, EI->second); in splitBlock() 432 replaceEdge(*EI, newedge); in splitBlock() 995 for (EdgeWeights::iterator EI = J.begin(), EE = J.end(); EI != EE; ++EI) { in repair() local 996 Edge e = EI->first; in repair()
|
/external/webrtc/data/voice_engine/stereo_rtp_files/ |
D | stereo_g729_jitter.rtp | 2 <4���EI��Xp2�@��agp`B�ђ��k�������Vx�<B��X�<42���I��X��u�… 12 �?Kr�C�<4���&EI��X��O{�Mm�T���Z�QRg��y�O+��p�H 19 �<4x�'�+EI��X�����]��O�% 3{���[Oa��*���O��3F��<4��(�+�I��XmcO�; �&�y��4�km�O… 90 O���{EI��X�`N4|I�:��|bl�ɑ4L��a�2�P����|`̝�4L�<4 98 g<�E�0��`n���Wo8K<4�����I��X�4��9�t�<�2azH^t�%h�4��9�q(��2azBt�%,<4����EI�… 104 …�<4ހ����I��X����o=��P�P����|EE2��G�n<�1�P�Ϧ���AEg<4ހ���EI��X�g?���Z �{fy… 119 …5�h<4A�����I��Xb记�G�Cy�)W���^"e3hn��hyiBWVd�T�<4A����EI��XM�� �EAi�f��Q:… 127 ꝺ��<4{����I��Xy���ZG�{p�&�p����0���cT XrC$}�����<4{���EI��Xr>`��i�zEH����… 128 …�<4����I��X@��� Z�>���������@X?"������t�snX�$�<4=���EI��Xx칧�[�D�^�S��J�v��… 134 �ݓ��0�v �����<45�%��I��Xp���:�ؠ�X3hf#��H�BD<z�:&�W3rƴ�Ϩz�<4w�'��EI��X@/��p;ѼF�… [all …]
|
D | stereo_g729.rtp | 2 <4���EI��Xp2�@��agp`B�ђ��k�������Vx�<B��X�<4���I��X��u�… 12 �?Kr�C�<4���&EI��X��O{�Mm�T���Z�QRg��y�O+��p�H 24 ���z��&I<4L�6�4�I��XHaG��P������o��kz���,��SҦ����c���A<4`�7�5EI��X&�N�gfK��… 40 ?�l����t {G�PG3Q���<4�?�:EI��X3�P��YR� �l�tCS�Oκ3�P�h#����l�Qi:2� 44 ���S˝��6�<4��G�?EI��X�Y 87 ���{EI��X�`N4|I�:��|bl�ɑ4L��a�2�P����|`̝�4L�<4 96 �����EI��X,�����l�S�H�9�Q,��ܬ� 105 …<4������I��X�fBB°���e� b�?K��zf^�)s�4e�N6�<4�����EI��X�g?���Z �{fy… 109 ��<4�����EI��X��g;� 0K��g��� 120 <4`����EI��X �ˈ[�x��y�㘇�A�� �����n�\y3d8��G��<4t�����I��Xy��W�g����&�k�ypRx3�… [all …]
|
D | hrtf_g722_1C_48.rtp | 2 ��}��EI��X 20 …K�d{d���rd?]C���ھ6��r��zW�t=�ܥ�����Je�}Te�cv^�`dgɃ�U�P�}�EI��X��H����ɻ�@��.… 37 P7L�xX�|���S��@`��Ȁ} �+EI��X|ǂ��pFHA��D��*!U�K�1D!/DQ�<U�a�\$�K��� JZ;�))r� �ΐ… 47 �5EI��X�����.� 119 …+�M�`�gkHH����ڢ j�$A!�_�5D�7�!3~�Uܒ벁1C�%R���_����H�})�{EI��X�B5���;1���… 123 :�4�x`�`P���'�����Ӄ�l3]�-adw=9n`5����v����@��/����p�}+��EI��X��x�n 126 …B���L�"~]"me��>`aD�*(�Wj�UT�����,5LL@� �<������}-��EI��X��2��M@�<��ʃ… 163 …C�3`]���Ux��tu���Ṯ��@_���,�����!�������}?��EI��X�ZB��UUR�����V�A�"S�0��t… 174 ���'�������C���x�}E��EI��X���ѷp�I*���?�ҙ�����u11WN'fdQ%R���4@CL�3S��je��to�B�`… 194 A��`�z�^!�c`��yI,D3(A��;� e3'J �a4�n(�qg����h� ����Sn���}M��EI��X�h�<�3�… [all …]
|
D | toggling_stereo_g729_pt18_pt125.rtp | 2 ���EI��X��I���@e, 8 ��I��X���(��,����I��X�ߡ�0�[Ա����EI��X���ݏXq������I��X�x�0… 10 …�3�̀-� �I��Xh"�g�YPt�:ր.� �I��X�����&����/�!EI��X=�J�Hqd;��… 12 …��M�*�I��Xqzӈ/�PD:z�N�*�I��X`�H�WT)� �O�+EI��Xr�mno8K���*… 109 …�}��ʥI��X�3X��8����3X��8���( �}����I��X��<u�V� �~��<u�V� �~( �}���EI��Xr8)� 113 …�K����ϥI��X)R_O�.0 �������I��X)�_��p)<J�����EI��X? �hy��rʀ… 116 …c�;����٥I��X�j�a��0��1������I��X3g��xs3�k�����EI��X*c��gS�O 119 …k�����ޥI��X���FZ{�������I��X�k�pD����EI��X����֢ps���… 126 …}K��I��X����By������By��( 6�}L��I��X�<5�HM�6B�<5�HM�6B@�M�EI��X)��^X�� 142 …�X5��@�0��U5��@�0��U( $6�}��3�I��X�X��E��X��E�( $@�}��4EI��XcPؠJr1��cPؠJr1��… [all …]
|
D | hrtf_g722_1C_48_jitterT2.rtp | 2 ��}��EI��X 20 …K�d{d���rd?]C���ھ6��r��zW�t=�ܥ�����Je�}Te�cv^�`dgɃ�U��}�EI��X��H����ɻ�@��.… 37 P7L�xX�|���S��@`����} �+EI��X|ǂ��pFHA��D��*!U�K�1D!/DQ�<U�a�\$�K��� JZ;�))r� �… 47 �5EI��X�����.� 165 …C�3`]���Ux��tu���Ṯ��@_���,�����!������Ā}?��EI��X�ZB��UUR�����V�A�"S�0��t�… 190 …�P����Ou_���D�Ӑ��& ƌ��[$���`X=kW\�P�D�+��0�Ja�� =����}K��EI��X��Mf@''4(8��DI… 204 �"W<9$����� hB�@���O*��'�}Q��EI��X�0� $�G�Q ��L��hBV���ő��Bఖd�{d��`�r�y�i�@�� 249 …��7^���DI���t3Y �i���ޕ��Ɛ��RbC���5p�� X_�����}c�EI��XĎ�A4`5P"4�LEEI��… 262 �>����R��2"ڴ�D�l�+(� H��H-F ������]`L2��pa���.X ��}g�EI��X�)�%\S�"(�… 291 ��� 05�!�KP �&���)���O�A�۠�1���5��1Q�1���T�q�%�^� ����m1�����}q�/EI��X���ĔA.�'�… [all …]
|
D | stereo_pcm16wb_jitter.rtp | 2 …EI��X����������… 16 …��������̀}�EI��X����… 29 …��������W�}�!EI��X��… 114 …�����������b��������������O�����4�������(��������}�0EI��X���������{��F… 503 �};�]EI��X�����.���������������X"5�-�*+7S;�A�C�+ 735 \"��}S�{EI��Xz%:�>4��� 879 :����"��������A��������%����K�}c��EI��X��������������*… 942 c %�����u��������������������������?����������0^ ��}k��EI��X��D… 975 …��Y���<���@���d��������������-�R!�,�1�3�1�'�}o��EI��X&!… 1034 …+'��������N��������������������! L�}s��EI��X ��������# …
|
/external/llvm/lib/Support/ |
D | Error.cpp | 61 handleAllErrors(std::move(E), [&](const ErrorInfoBase &EI) { in logAllUnhandledErrors() argument 62 EI.log(OS); in logAllUnhandledErrors() 86 handleAllErrors(std::move(Err), [&](const ErrorInfoBase &EI) { in errorToErrorCode() argument 87 EC = EI.convertToErrorCode(); in errorToErrorCode()
|
/external/llvm/lib/CodeGen/ |
D | ScheduleDAGPrinter.cpp | 56 SUnitIterator EI, in getEdgeAttributes() 58 if (EI.isArtificialDep()) in getEdgeAttributes() 60 if (EI.isCtrlDep()) in getEdgeAttributes()
|
D | Analysis.cpp | 48 EI = EB, in ComputeLinearIndex() local 50 EI != EE; ++EI) { in ComputeLinearIndex() 51 if (Indices && *Indices == unsigned(EI - EB)) in ComputeLinearIndex() 52 return ComputeLinearIndex(*EI, Indices+1, IndicesEnd, CurIndex); in ComputeLinearIndex() 53 CurIndex = ComputeLinearIndex(*EI, nullptr, nullptr, CurIndex); in ComputeLinearIndex() 93 EI = EB, in ComputeValueVTs() local 95 EI != EE; ++EI) in ComputeValueVTs() 96 ComputeValueVTs(TLI, DL, *EI, ValueVTs, Offsets, in ComputeValueVTs() 97 StartingOffset + SL->getElementOffset(EI - EB)); in ComputeValueVTs()
|
D | MachineBlockFrequencyInfo.cpp | 102 std::string getEdgeAttributes(const MachineBasicBlock *Node, EdgeIter EI, in getEdgeAttributes() 105 Node, EI, MBFI, MBFI->getMBPI(), ViewHotFreqPercent); in getEdgeAttributes()
|
/external/llvm/lib/Transforms/Instrumentation/ |
D | CFGMST.h | 178 for (auto &EI : AllEdges) in dumpEdges() 179 OS << " Edge " << Count++ << ": " << getBBInfo(EI->SrcBB).Index << "-->" in dumpEdges() 180 << getBBInfo(EI->DestBB).Index << EI->infoString() << "\n"; in dumpEdges()
|
/external/swiftshader/third_party/subzero/crosstest/ |
D | test_vector_ops_main.cpp | 79 for (size_t EI = 0; EI < NumTestElements; ++EI) { in testInsertElement() local 80 ElementTy Elt = TestElements[EI]; in testInsertElement()
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/ |
D | SelectionDAGPrinter.cpp | 93 static std::string getEdgeAttributes(const void *Node, EdgeIter EI, in getEdgeAttributes() 95 SDValue Op = EI.getNode()->getOperand(EI.getOperand()); in getEdgeAttributes()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAGPrinter.cpp | 98 static std::string getEdgeAttributes(const void *Node, EdgeIter EI, in getEdgeAttributes() 100 SDValue Op = EI.getNode()->getOperand(EI.getOperand()); in getEdgeAttributes()
|