Home
last modified time | relevance | path

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

/Linux-v4.19/tools/perf/util/
Dtime-utils.c140 double pcnt, start_pcnt, end_pcnt; in percent_slash_split() local
166 start_pcnt = pcnt * (i - 1); in percent_slash_split()
169 if (start_pcnt < 0.0 || start_pcnt > 1.0 || in percent_slash_split()
174 ptime->start = start + round(start_pcnt * total); in percent_slash_split()
184 double start_pcnt, end_pcnt; in percent_dash_split() local
196 if ((parse_percent(&start_pcnt, start_str) != 0) || in percent_dash_split()
204 if (start_pcnt < 0.0 || start_pcnt > 1.0 || in percent_dash_split()
206 start_pcnt > end_pcnt) { in percent_dash_split()
210 ptime->start = start + round(start_pcnt * total); in percent_dash_split()