Searched refs:outEdges (Results 1 – 3 of 3) sorted by relevance
| /llvm-project-15.0.7/llvm/unittests/XRay/ |
| H A D | GraphTest.cpp | 114 const auto &OE = G.outEdges(EV.first.first); in graphEdgeTester() 140 G.outEdges(EV.first.first).begin(), G.outEdges(EV.first.first).end(), in graphEdgeTester() 142 EXPECT_NE(G.outEdges(EV.first.first).end(), It); in graphEdgeTester() 219 EXPECT_EQ(0u, G.outEdges(0u).size()); in TEST() 220 EXPECT_TRUE(G.outEdges(0u).empty()); in TEST() 221 EXPECT_EQ(G.outEdges(0u).begin(), G.outEdges(0u).end()); in TEST() 247 EXPECT_EQ(1u, G.outEdges(0u).size()); in TEST() 248 EXPECT_FALSE(G.outEdges(0u).empty()); in TEST() 249 EXPECT_NE(G.outEdges(0u).begin(), G.outEdges(0u).end()); in TEST() 251 EXPECT_EQ(2u, G.outEdges(0u).begin()->second.EA); in TEST() [all …]
|
| /llvm-project-15.0.7/mlir/lib/Dialect/Affine/Transforms/ |
| H A D | LoopFusion.cpp | 240 if (outEdges.count(id) > 0) { in removeNode() 248 outEdges.erase(id); in removeNode() 312 for (auto *it = outEdges[srcId].begin(); it != outEdges[srcId].end(); in removeEdge() 315 outEdges[srcId].erase(it); in removeEdge() 369 if (outEdges.count(id) > 0) in getOutEdgeCount() 390 if (outEdges.count(srcId) == 0) in getFusedLoopNestInsertionPoint() 478 if (outEdges.count(srcId) > 0) { in updateEdges() 518 if (outEdges.count(sibId) > 0) { in updateEdges() 553 if (outEdges.count(id) > 0) in forEachMemRefOutputEdge() 585 if (it != outEdges.end()) { in print() [all …]
|
| /llvm-project-15.0.7/llvm/include/llvm/XRay/ |
| H A D | Graph.h | 361 InOutEdgeView<false, true> outEdges(const VertexIdentifier I) { in outEdges() function 365 InOutEdgeView<true, true> outEdges(const VertexIdentifier I) const { in outEdges() function
|