Lines Matching refs:pct
210 int blank, pct, last = 0; in main() local
224 if (ioctl(fd, CDRIOCGETPROGRESS, &pct) == -1) in main()
226 if (pct > 0 && !quiet) in main()
230 "eras" : "blank", pct); in main()
231 if (pct == 100 || (pct == 0 && last > 90)) in main()
233 last = pct; in main()
544 int count, i, pct, last = 0; in do_format() local
603 if (ioctl(the_fd, CDRIOCGETPROGRESS, &pct) == -1) in do_format()
605 if (pct > 0 && !quiet) in do_format()
607 pct); in do_format()
608 if (pct == 100 || (pct == 0 && last > 90)) in do_format()
610 last = pct; in do_format()
673 int pct; in write_file() local
678 pct = (size / 1024) * 100 / filesize; in write_file()
679 fprintf(stderr, " (%d%%)", pct); in write_file()