Home | History | Annotate | Download | only in ignition

Lines Matching refs:destinations

45   # Display the top 5 sources and destinations of dispatches to/from LdaZero
98 for source, destinations in iteritems(dispatches_table):
99 total = float(sum(itervalues(destinations)))
100 if bytecode in destinations:
101 count = destinations[bytecode]
104 destinations = []
108 destinations.append((destination, count, count / bytecode_total))
112 heapq.nlargest(top_count, destinations, key=lambda x: x[1]))
123 print "\nTop destinations of dispatches from {}:".format(bytecode)
217 help="print top dispatch sources and destinations to the specified bytecode"