Home
last modified time | relevance | path

Searched refs:first_time (Results 1 – 3 of 3) sorted by relevance

/tools/perf/util/
Dsvghelper.c26 static u64 first_time, last_time; variable
62 X = 1.0 * svg_page_width * (__time - first_time) / (last_time - first_time); in time2pixels()
94 first_time = start; in open_svg()
95 first_time = first_time / 100000000 * 100000000; in open_svg()
102 new_width = (last_time - first_time) / 5000000; in open_svg()
368 time2pixels(first_time), in svg_cpu_box()
369 time2pixels(last_time)-time2pixels(first_time), in svg_cpu_box()
374 10+time2pixels(first_time), cpu2y(cpu) + SLOT_HEIGHT/2, cpu_string); in svg_cpu_box()
377 10+time2pixels(first_time), cpu2y(cpu) + SLOT_MULT + SLOT_HEIGHT - 4, cpu_model()); in svg_cpu_box()
658 i = first_time; in svg_time_grid()
/tools/perf/
Dbuiltin-timechart.c61 first_time, last_time; member
389 pwr->start_time = tchart->first_time; in p_state_change()
561 if (!tchart->first_time || tchart->first_time > sample->time) in process_sample_event()
562 tchart->first_time = sample->time; in process_sample_event()
711 pwr->start_time = tchart->first_time; in end_sample_processing()
1345 p->start_time = tchart->first_time; in determine_display_tasks_filtered()
1357 c->start_time = tchart->first_time; in determine_display_tasks_filtered()
1385 p->start_time = tchart->first_time; in determine_display_tasks()
1399 c->start_time = tchart->first_time; in determine_display_tasks()
1476 open_svg(filename, 0, count, tchart->first_time, tchart->last_time); in write_svg_file()
[all …]
/tools/perf/scripts/python/
Dexported-sql-viewer.py2143 self.first_time = False
2146 if self.first_time:
2147 self.first_time = False
3438 self.first_time = 0
3445 self.first_time = int(glb.HostStartTime())
3448 placeholder_text += ", between " + str(self.first_time) + " and " + str(self.last_time)
3504 val += self.first_time
3511 vrange[0] = str(self.first_time)
3518 beg_range = max(int(vrange[0]), self.first_time)
3520 if beg_range > self.last_time or end_range < self.first_time: