Lines Matching full:top
3 # Print the top N most executed functions in QEMU using callgrind.
5 # topN_callgrind.py [-h] [-n] <number of displayed top functions> -- \
10 # [-n] - Specify the number of top functions to print.
42 usage='topN_callgrind.py [-h] [-n] <number of displayed top functions> -- '
46 parser.add_argument('-n', dest='top', type=int, default=25,
47 help='Specify the number of top functions to print.')
55 top = args.top variable
98 # Line number with the top function
104 # Limit the number of top functions to "top"
105 number_of_top_functions = (top if number_of_functions >
106 top else number_of_functions)
108 # Store the data of the top functions in top_functions[]
123 # Print top N functions