Home | History | Annotate | Download | only in fio

Lines Matching refs:perc

183 			unsigned int perc = 50;
186 perc = td->o.rwmix[DDIR_WRITE];
188 bytes_total += (bytes_total * perc) / 100;
194 double perc, perc_t;
199 perc = (double) bytes_done / (double) bytes_total;
200 if (perc > 1.0)
201 perc = 1.0;
203 perc = 0.0;
208 if (perc_t < perc)
209 perc = perc_t;
215 perc = 0.0;
219 eta_sec = (unsigned long) (elapsed * (1.0 / perc)) - elapsed;
481 double perc = 0.0;
484 perc = (double) je->elapsed_sec / (double) (je->elapsed_sec + je->eta_sec);
524 perc *= mult;
525 sprintf(perc_str, "%3.1f%% done", perc);