7 references to OutgoingEdges
ILCompiler.ReadyToRun (7)
Compiler\PettisHansenSort\CallGraphNode.cs (3)
20if (OutgoingEdges.TryGetValue(callee, out long curCount)) 21OutgoingEdges[callee] = curCount + count; 23OutgoingEdges.Add(callee, count);
Compiler\PettisHansenSort\PettisHansen.cs (4)
27var dict = new Dictionary<int, long>(node.OutgoingEdges.Count); 44foreach (var kvp in graph[i].OutgoingEdges) 90graph[a].OutgoingEdges.TryGetValue(graph[b], out long ab); 91graph[b].OutgoingEdges.TryGetValue(graph[a], out long ba);