Home
last modified time | relevance | path

Searched refs:PH (Results 1 – 25 of 256) sorted by relevance

1234567891011

/external/clang/lib/Frontend/
DVerifyDiagnosticConsumer.cpp315 for (ParseHelper PH(S); !PH.Done();) { in ParseDirective() local
317 if (!PH.Search("expected", true)) in ParseDirective()
319 PH.Advance(); in ParseDirective()
322 if (!PH.Next("-")) in ParseDirective()
324 PH.Advance(); in ParseDirective()
328 if (PH.Next("error")) in ParseDirective()
330 else if (PH.Next("warning")) in ParseDirective()
332 else if (PH.Next("remark")) in ParseDirective()
334 else if (PH.Next("note")) in ParseDirective()
336 else if (PH.Next("no-diagnostics")) { in ParseDirective()
[all …]
/external/llvm/lib/ObjectYAML/
DCOFFYAML.cpp368 COFFYAML::PEHeader &PH) { in mapping() argument
370 PH.Header.Subsystem); in mapping()
372 IO, PH.Header.DLLCharacteristics); in mapping()
374 IO.mapRequired("AddressOfEntryPoint", PH.Header.AddressOfEntryPoint); in mapping()
375 IO.mapRequired("ImageBase", PH.Header.ImageBase); in mapping()
376 IO.mapRequired("SectionAlignment", PH.Header.SectionAlignment); in mapping()
377 IO.mapRequired("FileAlignment", PH.Header.FileAlignment); in mapping()
379 PH.Header.MajorOperatingSystemVersion); in mapping()
381 PH.Header.MinorOperatingSystemVersion); in mapping()
382 IO.mapRequired("MajorImageVersion", PH.Header.MajorImageVersion); in mapping()
[all …]
/external/pcre/dist2/
DCMakeLists.txt11 # 2007-09-19 Adjusted by PH to retain previous default settings
28 # 2008-01-23 PH removed the automatic build of pcredemo.
29 # 2008-04-22 PH modified READLINE support so it finds NCURSES when needed.
30 # 2008-07-03 PH updated for revised UCP property support (change of files)
31 # 2009-03-23 PH applied Steven Van Ingelgem's patch to change the name
34 # 2009-03-23 PH applied a modified version of Steven Van Ingelgem's patches to
37 # 2009-04-11 PH applied Christian Ehrlicher's patch to show compiler flags that
39 # 2010-01-02 PH added test for stdint.h
40 # 2010-03-02 PH added test for inttypes.h
41 # 2011-08-01 PH added PCREGREP_BUFSIZE
[all …]
/external/llvm/lib/Transforms/Scalar/
DLoopDistribute.cpp604 BasicBlock *PH = L->getLoopPreheader(); in processLoop() local
605 if (!PH) in processLoop()
710 if (!PH->getSinglePredecessor() || &*PH->begin() != PH->getTerminator()) in processLoop()
711 SplitBlock(PH, PH->getTerminator(), DT, LI); in processLoop()
DLoopLoadElimination.cpp396 auto *PH = L->getLoopPreheader(); in propagateStoredValueToLoadUsers() local
398 PH->getTerminator()); in propagateStoredValueToLoadUsers()
400 new LoadInst(InitialPtr, "load_initial", PH->getTerminator()); in propagateStoredValueToLoadUsers()
403 PHI->addIncoming(Initial, PH); in propagateStoredValueToLoadUsers()
DLoopIdiomRecognize.cpp1141 BasicBlock *PH = CurLoop->getLoopPreheader(); in recognizePopcount() local
1142 if (!PH) in recognizePopcount()
1144 if (&PH->front() != PH->getTerminator()) in recognizePopcount()
1146 auto *EntryBI = dyn_cast<BranchInst>(PH->getTerminator()); in recognizePopcount()
1152 auto *PreCondBB = PH->getSinglePredecessor(); in recognizePopcount()
/external/llvm/lib/Transforms/Utils/
DLoopVersioning.cpp95 BasicBlock *PH = in versionLoop() local
97 PH->setName(VersionedLoop->getHeader()->getName() + ".ph"); in versionLoop()
105 cloneLoopWithPreheader(PH, RuntimeCheckBB, VersionedLoop, VMap, in versionLoop()
/external/icu/icu4c/source/data/coll/
Dom.txt8 "&Z<ch<<<Ch<<<CH<dh<<<Dh<<<DH<kh<<<Kh<<<KH<ny<<<Ny<<<NY<ph<<<Ph<<<PH<"
Dcy.txt13 "&P<ph<<<Ph<<<PH"
Dvi.txt30 "&P<ph<<<Ph<<<PH"
/external/pcre/dist2/cmake/
DFindEditline.cmake1 # Modified from FindReadline.cmake (PH Feb 2012)
DFindReadline.cmake22 # default to be overridden. PH
/external/icu/icu4c/source/data/region/
Dhaw.txt22 PH{"ʻĀina Pilipino"}
Dckb.txt141 PH{"فلیپین"}
Dyi.txt170 PH{"פֿיליפּינען"}
Dvai.txt162 PH{"ꔱꔒꔪꘋ"}
Dshi.txt162 PH{"ⴼⵉⵍⵉⴱⴱⵉⵏ"}
Dzgh.txt163 PH{"ⴼⵉⵍⵉⴱⴱⵉⵏ"}
Dks.txt207 PH{"فِلِپِینس"}
Dbrx.txt210 PH{"फिलीपिन्स"}
Dor.txt210 PH{"ଫିଲିପାଇନସ୍"}
Dbs_Cyrl.txt216 PH{"Филипини"}
/external/llvm/lib/Transforms/Vectorize/
DSLPVectorizer.cpp1100 PHINode *PH = dyn_cast<PHINode>(VL0); in buildTree_rec() local
1104 for (unsigned i = 0, e = PH->getNumIncomingValues(); i < e; ++i) { in buildTree_rec()
1106 cast<PHINode>(VL[j])->getIncomingValueForBlock(PH->getIncomingBlock(i))); in buildTree_rec()
1118 for (unsigned i = 0, e = PH->getNumIncomingValues(); i < e; ++i) { in buildTree_rec()
1123 PH->getIncomingBlock(i))); in buildTree_rec()
2216 PHINode *PH = dyn_cast<PHINode>(VL0); in vectorizeTree() local
2217 Builder.SetInsertPoint(PH->getParent()->getFirstNonPHI()); in vectorizeTree()
2218 Builder.SetCurrentDebugLocation(PH->getDebugLoc()); in vectorizeTree()
2219 PHINode *NewPhi = Builder.CreatePHI(VecTy, PH->getNumIncomingValues()); in vectorizeTree()
2226 for (unsigned i = 0, e = PH->getNumIncomingValues(); i < e; ++i) { in vectorizeTree()
[all …]
/external/llvm/lib/Target/Hexagon/
DHexagonHardwareLoops.cpp790 MachineBasicBlock *PH = Loop->getLoopPreheader(); in computeCount() local
791 assert (PH && "Should have a preheader by now"); in computeCount()
792 MachineBasicBlock::iterator InsertPos = PH->getFirstTerminator(); in computeCount()
794 if (InsertPos != PH->end()) in computeCount()
877 BuildMI(*PH, InsertPos, DL, SubD, SubR); in computeCount()
897 BuildMI(*PH, InsertPos, DL, SubD, SubR); in computeCount()
916 BuildMI(*PH, InsertPos, DL, AddD, AddR) in computeCount()
937 BuildMI(*PH, InsertPos, DL, LsrD, LsrR) in computeCount()
/external/llvm/unittests/IR/
DMetadataTest.cpp2342 DistinctMDOperandPlaceholder PH(7); in TEST_F() local
2343 EXPECT_DEATH(MetadataAsValue::get(Context, &PH), in TEST_F()
2349 DistinctMDOperandPlaceholder PH(7); in TEST_F() local
2350 EXPECT_DEATH(MDTuple::get(Context, &PH), "Unexpected callback to owner"); in TEST_F()
2355 DistinctMDOperandPlaceholder PH(7); in TEST_F() local
2356 MDTuple::getDistinct(Context, &PH); in TEST_F()
2357 EXPECT_DEATH(MDTuple::getDistinct(Context, &PH), in TEST_F()
2369 DistinctMDOperandPlaceholder PH(7); in TEST_F() local
2370 MDTuple::getDistinct(Context, &PH); in TEST_F()
2371 EXPECT_DEATH(TrackingMDRef Ref(&PH), "Placeholders can only be used once"); in TEST_F()
[all …]

1234567891011