Searched refs:EdgeEntry (Results 1 – 3 of 3) sorted by relevance
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/PBQP/ |
D | Graph.h | 32 class EdgeEntry; variable 35 typedef std::list<EdgeEntry> EdgeList; 80 class EdgeEntry { 87 EdgeEntry(NodeItr node1, NodeItr node2, const Matrix &costs) in EdgeEntry() function 114 EdgeEntry& getEdge(EdgeItr eItr) { return *eItr; } in getEdge() 115 const EdgeEntry& getEdge(ConstEdgeItr eItr) const { return *eItr; } in getEdge() 122 EdgeItr addConstructedEdge(const EdgeEntry &e) { in addConstructedEdge() 127 EdgeEntry &ne = getEdge(edgeItr); in addConstructedEdge() 181 return addConstructedEdge(EdgeEntry(n1Itr, n2Itr, costs)); in addEdge() 298 EdgeEntry &e = getEdge(eItr); in getEdgeOtherNode() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/PBQP/ |
D | Graph.h | 102 class EdgeEntry { 104 EdgeEntry(NodeId N1Id, NodeId N2Id, MatrixPtr Costs) in EdgeEntry() function 172 using EdgeVector = std::vector<EdgeEntry>; 190 EdgeEntry& getEdge(EdgeId EId) { return Edges[EId]; } in getEdge() 191 const EdgeEntry& getEdge(EdgeId EId) const { return Edges[EId]; } in getEdge() 206 EdgeId addConstructedEdge(EdgeEntry E) { in addConstructedEdge() 219 EdgeEntry &NE = getEdge(EId); in addConstructedEdge() 416 EdgeId EId = addConstructedEdge(EdgeEntry(N1Id, N2Id, AllocatedCosts)); in addEdge() 441 EdgeId EId = addConstructedEdge(EdgeEntry(N1Id, N2Id, Costs)); in addEdgeBypassingCostAllocator() 562 EdgeEntry &E = getEdge(EId); in getEdgeOtherNodeId() [all …]
|
/external/llvm/include/llvm/CodeGen/PBQP/ |
D | Graph.h | 102 class EdgeEntry { 104 EdgeEntry(NodeId N1Id, NodeId N2Id, MatrixPtr Costs) in EdgeEntry() function 186 typedef std::vector<EdgeEntry> EdgeVector; 202 EdgeEntry& getEdge(EdgeId EId) { return Edges[EId]; } in getEdge() 203 const EdgeEntry& getEdge(EdgeId EId) const { return Edges[EId]; } in getEdge() 218 EdgeId addConstructedEdge(EdgeEntry E) { in addConstructedEdge() 231 EdgeEntry &NE = getEdge(EId); in addConstructedEdge() 422 EdgeId EId = addConstructedEdge(EdgeEntry(N1Id, N2Id, AllocatedCosts)); in addEdge() 447 EdgeId EId = addConstructedEdge(EdgeEntry(N1Id, N2Id, Costs)); in addEdgeBypassingCostAllocator() 568 EdgeEntry &E = getEdge(EId); in getEdgeOtherNodeId() [all …]
|