Home
last modified time | relevance | path

Searched refs:Inserted (Results 1 – 25 of 57) sorted by relevance

123

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DWARFLinker/
DDWARFLinkerDeclContext.cpp183 bool Inserted; in getChildDeclContext() local
187 std::tie(ContextIter, Inserted) = Contexts.insert(NewContext); in getChildDeclContext()
188 assert(Inserted && "Failed to insert DeclContext"); in getChildDeclContext()
189 (void)Inserted; in getChildDeclContext()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DPassRegistry.cpp59 bool Inserted = in registerPass() local
61 assert(Inserted && "Pass registered multiple times!"); in registerPass()
62 (void)Inserted; in registerPass()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/
DCFGMST.h256 bool Inserted; in addEdge() local
257 std::tie(Iter, Inserted) = BBInfos.insert(std::make_pair(Src, nullptr)); in addEdge()
258 if (Inserted) { in addEdge()
263 std::tie(Iter, Inserted) = BBInfos.insert(std::make_pair(Dest, nullptr)); in addEdge()
264 if (Inserted) in addEdge()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/Utils/
DFunctionComparator.h73 bool Inserted; in getNumber() local
74 std::tie(MapIter, Inserted) = GlobalNumbers.insert({Global, NextNumber}); in getNumber()
75 if (Inserted) in getNumber()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/XRay/
DProfile.cpp212 bool Inserted; in mergeProfilesByThread() local
213 std::tie(PathDataIt, Inserted) = It->second->insert({NewPathID, Data}); in mergeProfilesByThread()
214 if (!Inserted) { in mergeProfilesByThread()
245 bool Inserted; in mergeProfilesByStack() local
246 std::tie(PathDataIt, Inserted) = PathData.insert({NewPathID, Data}); in mergeProfilesByStack()
247 if (!Inserted) { in mergeProfilesByStack()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DSignposts.cpp49 const auto &Inserted = Signposts.insert( in getSignpostForTimer() local
51 return Inserted.first->second; in getSignpostForTimer()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DPassManager.h710 bool Inserted; in invalidateImpl() local
711 std::tie(IMapI, Inserted) = in invalidateImpl()
713 (void)Inserted; in invalidateImpl()
714 assert(Inserted && "Should not have already inserted this ID, likely " in invalidateImpl()
891 bool Inserted = in invalidate() local
894 (void)Inserted; in invalidate()
895 assert(Inserted && "Should never have already inserted this ID, likely " in invalidate()
942 bool Inserted; in getResultImpl() local
943 std::tie(RI, Inserted) = AnalysisResults.insert(std::make_pair( in getResultImpl()
948 if (Inserted) { in getResultImpl()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DMachineDominators.h245 bool Inserted = NewBBs.insert(NewBB).second; in recordSplitCriticalEdge() local
246 (void)Inserted; in recordSplitCriticalEdge()
247 assert(Inserted && in recordSplitCriticalEdge()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DCGSCCPassManager.cpp464 bool Inserted = RetainedEdges.insert(&CalleeN).second; in updateCGAndAnalysisManagerForFunctionPass() local
465 (void)Inserted; in updateCGAndAnalysisManagerForFunctionPass()
466 assert(Inserted && "We should never visit a function twice."); in updateCGAndAnalysisManagerForFunctionPass()
486 bool Inserted = RetainedEdges.insert(&RefereeN).second; in updateCGAndAnalysisManagerForFunctionPass() local
487 (void)Inserted; in updateCGAndAnalysisManagerForFunctionPass()
488 assert(Inserted && "We should never visit a function twice."); in updateCGAndAnalysisManagerForFunctionPass()
DLazyCallGraph.cpp317 bool Inserted = SCCSet.insert(C).second; in verify() local
318 assert(Inserted && "Found a duplicate SCC!"); in verify()
1730 bool Inserted = in buildRefSCCs() local
1732 (void)Inserted; in buildRefSCCs()
1733 assert(Inserted && "Cannot already have this RefSCC in the index map!"); in buildRefSCCs()
DBranchProbabilityInfo.cpp474 bool Inserted; in isSCCHeader() local
476 std::tie(HeaderMapIt, Inserted) = HeaderMap.insert(std::make_pair(BB, false)); in isSCCHeader()
477 if (Inserted) { in isSCCHeader()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Remarks/
DRemarkLinker.cpp55 auto Inserted = Remarks.insert(std::move(Remark)); in keep() local
56 return **Inserted.first; in keep()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DSwiftErrorValueTracking.cpp127 bool Inserted = false; in createEntriesInEntryBlock() local
140 Inserted = true; in createEntriesInEntryBlock()
143 return Inserted; in createEntriesInEntryBlock()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DConstantHoisting.cpp374 bool Inserted; in collectConstantCandidates() local
376 std::tie(Itr, Inserted) = ConstCandMap.insert(std::make_pair(Cand, 0)); in collectConstantCandidates()
377 if (Inserted) { in collectConstantCandidates()
422 bool Inserted; in collectConstantCandidates() local
424 std::tie(Itr, Inserted) = ConstCandMap.insert(std::make_pair(Cand, 0)); in collectConstantCandidates()
425 if (Inserted) { in collectConstantCandidates()
DSpeculateAroundPHIs.cpp469 bool Inserted = SpecCostMap.insert({I, Cost}).second; in findProfitablePHIs() local
470 (void)Inserted; in findProfitablePHIs()
471 assert(Inserted && "Must not re-insert a cost during the DFS!"); in findProfitablePHIs()
DSimpleLoopUnswitch.cpp1416 bool Inserted = ExitLoopMap.insert({PredBB, ExitL}).second; in buildClonedLoops() local
1417 (void)Inserted; in buildClonedLoops()
1418 assert(Inserted && "Should only visit an unlooped block once!"); in buildClonedLoops()
1815 bool Inserted = NewExitLoopBlocks.insert(PredBB).second; in rebuildLoopAfterUnswitch() local
1816 (void)Inserted; in rebuildLoopAfterUnswitch()
1817 assert(Inserted && "Should only visit an unlooped block once!"); in rebuildLoopAfterUnswitch()
2364 bool Inserted = DTCostMap.insert({&N, Cost}).second; in computeDomSubtreeCost() local
2365 (void)Inserted; in computeDomSubtreeCost()
2366 assert(Inserted && "Should not insert a node while visiting children!"); in computeDomSubtreeCost()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DLoopRotationUtils.cpp82 bool Inserted = VM.insert({K, V}).second; in InsertNewValueIntoMap() local
83 assert(Inserted); in InsertNewValueIntoMap()
84 (void)Inserted; in InsertNewValueIntoMap()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DFoldingSet.h458 T *Inserted = GetOrInsertNode(N); in InsertNode() local
459 (void)Inserted; in InsertNode()
460 assert(Inserted == N && "Node already inserted!"); in InsertNode()
/third_party/skia/third_party/externals/opengl-registry/extensions/OES/
DOES_texture_env_crossbar.txt121 Inserted after the second paragraph of F.2.12:
131 Inserted after the third paragraph of F.2.12:
/third_party/openGLES/extensions/OES/
DOES_texture_env_crossbar.txt131 Inserted after the second paragraph of F.2.12:
141 Inserted after the third paragraph of F.2.12:
/third_party/skia/third_party/externals/opengl-registry/extensions/ARB/
DARB_texture_env_crossbar.txt143 Inserted after the second paragraph of F.2.12:
153 Inserted after the third paragraph of F.2.12:
/third_party/openGLES/extensions/ARB/
DARB_texture_env_crossbar.txt153 Inserted after the second paragraph of F.2.12:
163 Inserted after the third paragraph of F.2.12:
/third_party/libnl/doc/stylesheets/
Dpygments.css18 .highlight .gi { color: #00A000 } /* Generic.Inserted */
/third_party/boost/libs/python/doc/html/numpy/_static/
Dpygments.css17 .highlight .gi { color: #00A000 } /* Generic.Inserted */
/third_party/boost/libs/gil/doc/html/_static/
Dpygments.css17 .highlight .gi { color: #00A000 } /* Generic.Inserted */

123