Home
last modified time | relevance | path

Searched refs:Yslot (Results 1 – 2 of 2) sorted by relevance

/external/linux-tools-perf/src/tools/perf/util/
Dsvghelper.h7 extern void svg_box(int Yslot, u64 start, u64 end, const char *type);
8 extern void svg_sample(int Yslot, int cpu, u64 start, u64 end);
9 extern void svg_waiting(int Yslot, u64 start, u64 end);
23 extern void svg_text(int Yslot, u64 start, const char *text);
Dsvghelper.c122 void svg_box(int Yslot, u64 start, u64 end, const char *type) in svg_box() argument
128 time2pixels(start), time2pixels(end)-time2pixels(start), Yslot * SLOT_MULT, SLOT_HEIGHT, type); in svg_box()
131 void svg_sample(int Yslot, int cpu, u64 start, u64 end) in svg_sample() argument
138 time2pixels(start), time2pixels(end)-time2pixels(start), Yslot * SLOT_MULT, SLOT_HEIGHT); in svg_sample()
149 time2pixels(start), Yslot * SLOT_MULT + SLOT_HEIGHT - 1, text_size, cpu + 1); in svg_sample()
171 void svg_waiting(int Yslot, u64 start, u64 end) in svg_waiting() argument
194 …fprintf(svgfile, "<g transform=\"translate(%4.8f,%4.8f)\">\n", time2pixels(start), Yslot * SLOT_MU… in svg_waiting()
433 void svg_text(int Yslot, u64 start, const char *text) in svg_text() argument
439 time2pixels(start), Yslot * SLOT_MULT+SLOT_HEIGHT/2, text); in svg_text()