Lines Matching +full:- +full:replace
5 # topN_callgrind.py [-h] [-n] <number of displayed top functions> -- \
9 # [-h] - Print the script arguments help message.
10 # [-n] - Specify the number of top functions to print.
11 # - If this flag is not specified, the tool defaults to 25.
14 # topN_callgrind.py -n 20 -- qemu-arm coulomb_double-arm
42 usage='topN_callgrind.py [-h] [-n] <number of displayed top functions> -- '
46 parser.add_argument('-n', dest='top', type=int, default=25,
65 ["valgrind", "--tool=callgrind", "--callgrind-out-file=/tmp/callgrind.data"]
70 sys.exit(callgrind.stderr.decode("utf-8"))
82 sys.exit(callgrind_annotate.stderr.decode("utf-8"))
96 total_number_of_instructions.replace(',', ''))
102 number_of_functions = len(callgrind_data) - first_func_line - 2
117 '-' * 4,
118 '-' * 10,
119 '-' * 30,
120 '-' * 30,
127 function_instructions = float(function_data[0].replace(',', ''))